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

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