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

Linux/MacOSX: mark RIPEMD-160 as deprecated like it's the case on Windows. It will no more be available for the creation of volumes.

This commit is contained in:
Mounir IDRASSI
2015-02-08 14:14:25 +01:00
parent ad4af09d88
commit 2c96d17748

View File

@@ -41,6 +41,7 @@ namespace VeraCrypt
// RIPEMD-160 // RIPEMD-160
Ripemd160::Ripemd160 () Ripemd160::Ripemd160 ()
{ {
Deprecated = true; // Mark RIPEMD-160 as deprecated like on Windows.
Context.Allocate (sizeof (RMD160_CTX)); Context.Allocate (sizeof (RMD160_CTX));
Init(); Init();
} }