From 37cbbf2420313fde35000e899db6bff6212c5ee0 Mon Sep 17 00:00:00 2001 From: Tino Reichardt Date: Fri, 16 Oct 2020 11:04:19 +0200 Subject: [PATCH] Use lowercase hashes --- CPP/7zip/UI/Common/HashCalc.cpp | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CPP/7zip/UI/Common/HashCalc.cpp b/CPP/7zip/UI/Common/HashCalc.cpp index c340ac7f..d090ff78 100644 --- a/CPP/7zip/UI/Common/HashCalc.cpp +++ b/CPP/7zip/UI/Common/HashCalc.cpp @@ -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) diff --git a/README.md b/README.md index 05bd48f8..a3aed16c 100644 --- a/README.md +++ b/README.md @@ -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