1.01 pre1:

added preferences to switch encryption+kdf and to edit kdf parameters (for AES and Argon2)
This commit is contained in:
Philipp Crocoll
2016-09-08 04:41:41 +02:00
parent e4c17e2e27
commit 9b9f069949
12 changed files with 390 additions and 69 deletions

View File

@@ -122,6 +122,7 @@ namespace KeePassLib.Cryptography.KeyDerivation
// Try to use the native library first
if (NativeLib.TransformKey256(pbNewKey, pbKeySeed32, uNumRounds))
{
//no need to hash, this is already done in the native library.
byte[] pbKey = new byte[32];
Array.Copy(pbNewKey, pbKey, pbNewKey.Length);