VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Crypto/Streebog.h
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2016-08-16 12:37:45 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2016-08-16 12:42:44 +0200
commit625259d2260ae26234595aadeb87d74244b9962d (patch)
treeff2351933c437cb4bc49df76f38caa9475e926ab /src/Crypto/Streebog.h
parent2fef14ff7626f2879b2a8de721a03c7e0f7ff9f6 (diff)
downloadVeraCrypt-625259d2260ae26234595aadeb87d74244b9962d.tar.gz
VeraCrypt-625259d2260ae26234595aadeb87d74244b9962d.zip
Fix compilation error in Streebog code caused by latest changes.
Diffstat (limited to 'src/Crypto/Streebog.h')
-rw-r--r--src/Crypto/Streebog.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Crypto/Streebog.h b/src/Crypto/Streebog.h
index 61630234..47c792c1 100644
--- a/src/Crypto/Streebog.h
+++ b/src/Crypto/Streebog.h
@@ -27,7 +27,7 @@ typedef ALIGN(16) struct _STREEBOG_CTX
void STREEBOG_init(STREEBOG_CTX *ctx);
void STREEBOG_init256(STREEBOG_CTX *ctx);
-void STREEBOG_add(STREEBOG_CTX *ctx, byte *msg, size_t len);
+void STREEBOG_add(STREEBOG_CTX *ctx, const byte *msg, size_t len);
void STREEBOG_finalize(STREEBOG_CTX *ctx, byte *out);
#endif