mirror of
https://github.com/veracrypt/VeraCrypt.git
synced 2025-11-11 11:08:02 -06:00
Change PBKDF Iterations count from TrueCrypt values to VeraCrypt values.
This commit is contained in:
@@ -51,7 +51,7 @@ namespace TrueCrypt
|
|||||||
|
|
||||||
virtual void DeriveKey (const BufferPtr &key, const VolumePassword &password, const ConstBufferPtr &salt, int iterationCount) const;
|
virtual void DeriveKey (const BufferPtr &key, const VolumePassword &password, const ConstBufferPtr &salt, int iterationCount) const;
|
||||||
virtual shared_ptr <Hash> GetHash () const { return shared_ptr <Hash> (new Ripemd160); }
|
virtual shared_ptr <Hash> GetHash () const { return shared_ptr <Hash> (new Ripemd160); }
|
||||||
virtual int GetIterationCount () const { return 2000; }
|
virtual int GetIterationCount () const { return 655340; }
|
||||||
virtual wstring GetName () const { return L"HMAC-RIPEMD-160"; }
|
virtual wstring GetName () const { return L"HMAC-RIPEMD-160"; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
@@ -67,7 +67,7 @@ namespace TrueCrypt
|
|||||||
|
|
||||||
virtual void DeriveKey (const BufferPtr &key, const VolumePassword &password, const ConstBufferPtr &salt, int iterationCount) const;
|
virtual void DeriveKey (const BufferPtr &key, const VolumePassword &password, const ConstBufferPtr &salt, int iterationCount) const;
|
||||||
virtual shared_ptr <Hash> GetHash () const { return shared_ptr <Hash> (new Ripemd160); }
|
virtual shared_ptr <Hash> GetHash () const { return shared_ptr <Hash> (new Ripemd160); }
|
||||||
virtual int GetIterationCount () const { return 1000; }
|
virtual int GetIterationCount () const { return 327670; }
|
||||||
virtual wstring GetName () const { return L"HMAC-RIPEMD-160"; }
|
virtual wstring GetName () const { return L"HMAC-RIPEMD-160"; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
@@ -83,7 +83,7 @@ namespace TrueCrypt
|
|||||||
|
|
||||||
virtual void DeriveKey (const BufferPtr &key, const VolumePassword &password, const ConstBufferPtr &salt, int iterationCount) const;
|
virtual void DeriveKey (const BufferPtr &key, const VolumePassword &password, const ConstBufferPtr &salt, int iterationCount) const;
|
||||||
virtual shared_ptr <Hash> GetHash () const { return shared_ptr <Hash> (new Sha1); }
|
virtual shared_ptr <Hash> GetHash () const { return shared_ptr <Hash> (new Sha1); }
|
||||||
virtual int GetIterationCount () const { return 2000; }
|
virtual int GetIterationCount () const { return 500000; }
|
||||||
virtual wstring GetName () const { return L"HMAC-SHA-1"; }
|
virtual wstring GetName () const { return L"HMAC-SHA-1"; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
@@ -99,7 +99,7 @@ namespace TrueCrypt
|
|||||||
|
|
||||||
virtual void DeriveKey (const BufferPtr &key, const VolumePassword &password, const ConstBufferPtr &salt, int iterationCount) const;
|
virtual void DeriveKey (const BufferPtr &key, const VolumePassword &password, const ConstBufferPtr &salt, int iterationCount) const;
|
||||||
virtual shared_ptr <Hash> GetHash () const { return shared_ptr <Hash> (new Sha512); }
|
virtual shared_ptr <Hash> GetHash () const { return shared_ptr <Hash> (new Sha512); }
|
||||||
virtual int GetIterationCount () const { return 1000; }
|
virtual int GetIterationCount () const { return 500000; }
|
||||||
virtual wstring GetName () const { return L"HMAC-SHA-512"; }
|
virtual wstring GetName () const { return L"HMAC-SHA-512"; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
@@ -115,7 +115,7 @@ namespace TrueCrypt
|
|||||||
|
|
||||||
virtual void DeriveKey (const BufferPtr &key, const VolumePassword &password, const ConstBufferPtr &salt, int iterationCount) const;
|
virtual void DeriveKey (const BufferPtr &key, const VolumePassword &password, const ConstBufferPtr &salt, int iterationCount) const;
|
||||||
virtual shared_ptr <Hash> GetHash () const { return shared_ptr <Hash> (new Whirlpool); }
|
virtual shared_ptr <Hash> GetHash () const { return shared_ptr <Hash> (new Whirlpool); }
|
||||||
virtual int GetIterationCount () const { return 1000; }
|
virtual int GetIterationCount () const { return 500000; }
|
||||||
virtual wstring GetName () const { return L"HMAC-Whirlpool"; }
|
virtual wstring GetName () const { return L"HMAC-Whirlpool"; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|||||||
Reference in New Issue
Block a user