VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Volume
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2015-02-08 14:14:25 +0100
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2015-02-08 16:20:40 +0100
commit2c96d17748eaff6fd77453b58476d965e54d59d7 (patch)
tree6f941fd2a15337a3ecfdc089d18e22dfd5149acb /src/Volume
parentad4af09d884e1727750571f7679e8679b8027a1c (diff)
downloadVeraCrypt-2c96d17748eaff6fd77453b58476d965e54d59d7.tar.gz
VeraCrypt-2c96d17748eaff6fd77453b58476d965e54d59d7.zip
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.
Diffstat (limited to 'src/Volume')
-rw-r--r--src/Volume/Hash.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Volume/Hash.cpp b/src/Volume/Hash.cpp
index cc582b92..cba74b6c 100644
--- a/src/Volume/Hash.cpp
+++ b/src/Volume/Hash.cpp
@@ -41,6 +41,7 @@ namespace VeraCrypt
// RIPEMD-160
Ripemd160::Ripemd160 ()
{
+ Deprecated = true; // Mark RIPEMD-160 as deprecated like on Windows.
Context.Allocate (sizeof (RMD160_CTX));
Init();
}