diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-08-16 12:37:45 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-08-16 12:42:44 +0200 |
commit | 625259d2260ae26234595aadeb87d74244b9962d (patch) | |
tree | ff2351933c437cb4bc49df76f38caa9475e926ab /src/Crypto/Streebog.c | |
parent | 2fef14ff7626f2879b2a8de721a03c7e0f7ff9f6 (diff) | |
download | VeraCrypt-625259d2260ae26234595aadeb87d74244b9962d.tar.gz VeraCrypt-625259d2260ae26234595aadeb87d74244b9962d.zip |
Fix compilation error in Streebog code caused by latest changes.
Diffstat (limited to 'src/Crypto/Streebog.c')
-rw-r--r-- | src/Crypto/Streebog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Crypto/Streebog.c b/src/Crypto/Streebog.c index d13d58d2..a5fbdbf6 100644 --- a/src/Crypto/Streebog.c +++ b/src/Crypto/Streebog.c @@ -2347,7 +2347,7 @@ stage3(STREEBOG_CTX *CTX) memcpy((CTX->hash), (CTX->h), 8 * sizeof(unsigned long long)); } -void STREEBOG_add(STREEBOG_CTX *CTX, byte *data, size_t len) +void STREEBOG_add(STREEBOG_CTX *CTX, const byte *data, size_t len) { size_t chunksize; |