1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 02:58:02 -06:00

Linux/MacOSX: Add Streebog to the list of supported hash algorithms used for key derivation.

This commit is contained in:
Mounir IDRASSI
2016-08-17 08:29:40 +02:00
parent d8a7de8ffb
commit b56e8c5c4b

View File

@@ -26,6 +26,7 @@ namespace VeraCrypt
l.push_back (shared_ptr <Hash> (new Sha512 ()));
l.push_back (shared_ptr <Hash> (new Whirlpool ()));
l.push_back (shared_ptr <Hash> (new Sha256 ()));
l.push_back (shared_ptr <Hash> (new Streebog ()));
l.push_back (shared_ptr <Hash> (new Ripemd160 ()));
return l;