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
No known key found for this signature in database
GPG Key ID: DD0C382D5FCFB8FC

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;