From e90e24b30b379752bf6531c663085de1d2a653d7 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Tue, 9 Aug 2016 14:25:52 +0200 Subject: Windows: Add support for Streebog (hash) and kuznyechik (encryption) --- src/Volume/Hash.cpp | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'src/Volume/Hash.cpp') diff --git a/src/Volume/Hash.cpp b/src/Volume/Hash.cpp index 225176a8..ea3517e5 100644 --- a/src/Volume/Hash.cpp +++ b/src/Volume/Hash.cpp @@ -15,6 +15,7 @@ #include "Crypto/Rmd160.h" #include "Crypto/Sha2.h" #include "Crypto/Whirlpool.h" +#include "Crypto/Streebog.h" namespace VeraCrypt { @@ -138,4 +139,28 @@ namespace VeraCrypt if_debug (ValidateDataParameters (data)); WHIRLPOOL_add (data.Get(), (int) data.Size(), (WHIRLPOOL_CTX *) Context.Ptr()); } + + // Streebog + Streebog::Streebog () + { + Context.Allocate (sizeof (STREEBOG_CTX)); + Init(); + } + + void Streebog::GetDigest (const BufferPtr &buffer) + { + if_debug (ValidateDigestParameters (buffer)); + STREEBOG_finalize ((STREEBOG_CTX *) Context.Ptr(), buffer); + } + + void Streebog::Init () + { + STREEBOG_init ((STREEBOG_CTX *) Context.Ptr()); + } + + void Streebog::ProcessData (const ConstBufferPtr &data) + { + if_debug (ValidateDataParameters (data)); + STREEBOG_add (data.Get(), (int) data.Size(), (STREEBOG_CTX *) Context.Ptr()); + } } -- cgit v1.2.3