I'm working on FauxAPI authentication from PowerShell, and discovered that the API rejects the hash unless it's lowercase.
Hexadecimal is a case-insensitive concept, and to reject a valid hash because of its case is counterintuitive, considering that both upper and lower cases represent the same binary data.
The workaround is simple, but this should be fixed or at least noted in the documentation.