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 'CPP/7zip/Crypto/RandGen.h')
-rwxr-xr-xCPP/7zip/Crypto/RandGen.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/CPP/7zip/Crypto/RandGen.h b/CPP/7zip/Crypto/RandGen.h
index 209445c4..cfdcd60d 100755
--- a/CPP/7zip/Crypto/RandGen.h
+++ b/CPP/7zip/Crypto/RandGen.h
@@ -3,11 +3,11 @@
#ifndef __CRYPTO_RAND_GEN_H
#define __CRYPTO_RAND_GEN_H
-#include "Sha1.h"
+#include "../../../C/Sha256.h"
class CRandomGenerator
{
- Byte _buff[NCrypto::NSha1::kDigestSize];
+ Byte _buff[SHA256_DIGEST_SIZE];
bool _needInit;
void Init();