Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '7zip/Crypto/7zAES/SHA256.h')
-rwxr-xr-x7zip/Crypto/7zAES/SHA256.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/7zip/Crypto/7zAES/SHA256.h b/7zip/Crypto/7zAES/SHA256.h
index 0ccebca2..aaf40e90 100755
--- a/7zip/Crypto/7zAES/SHA256.h
+++ b/7zip/Crypto/7zAES/SHA256.h
@@ -21,7 +21,7 @@ public:
enum {DIGESTSIZE = 32};
SHA256() { Init(); } ;
void Init();
- void Update(const Byte *data, UInt32 size);
+ void Update(const Byte *data, size_t size);
void Final(Byte *digest);
};