From 625259d2260ae26234595aadeb87d74244b9962d Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Tue, 16 Aug 2016 12:37:45 +0200 Subject: Fix compilation error in Streebog code caused by latest changes. --- src/Crypto/Streebog.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Crypto/Streebog.h') 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 -- cgit v1.2.3