diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-02-08 14:14:25 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-02-08 16:20:40 +0100 |
commit | 2c96d17748eaff6fd77453b58476d965e54d59d7 (patch) | |
tree | 6f941fd2a15337a3ecfdc089d18e22dfd5149acb /src | |
parent | ad4af09d884e1727750571f7679e8679b8027a1c (diff) | |
download | VeraCrypt-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')
-rw-r--r-- | src/Volume/Hash.cpp | 1 |
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(); } |