1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 19:08:26 -06:00

Fix compilation error in Streebog code caused by latest changes.

This commit is contained in:
Mounir IDRASSI
2016-08-16 12:37:45 +02:00
parent 2fef14ff76
commit 625259d226
2 changed files with 2 additions and 2 deletions

View File

@@ -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