Use lowercase hashes

This commit is contained in:
Tino Reichardt
2020-10-16 11:04:19 +02:00
parent 5f9c65beb9
commit 37cbbf2420
2 changed files with 2 additions and 2 deletions

View File

@@ -312,7 +312,7 @@ HRESULT HashCalc(
static inline char GetHex(unsigned v)
{
return (char)((v < 10) ? ('0' + v) : ('A' + (v - 10)));
return (char)((v < 10) ? ('0' + v) : ('a' + (v - 10)));
}
void AddHashHexToString(char *dest, const Byte *data, UInt32 size)

View File

@@ -284,7 +284,7 @@ You find this project useful, maybe you consider a donation ;-)
- [LZ5] Version 1.5
- [Zstandard] Version 1.4.5
/TR 2020-10-03
/TR 2020-10-16
## Notes