ModernKeePassLib implements HMAC correctly

Blake2b also implemented, but not tested
ModernKeePass app better implements focus on database password box (but still not working correctly)
This commit is contained in:
2017-10-26 12:38:34 +02:00
committed by BONNEVILLE Geoffroy
parent 5cf4ff3012
commit 1b439a4960
18 changed files with 317 additions and 213 deletions

View File

@@ -122,7 +122,7 @@ namespace ModernKeePassLib.Cryptography.Cipher
m_c.Dispose();
m_c = null;
//m_sBase.Close();
m_sBase.Dispose();
m_sBase = null;
}

View File

@@ -22,7 +22,6 @@ using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Diagnostics;
using System.Security;
namespace ModernKeePassLib.Cryptography.Cipher
{

View File

@@ -18,7 +18,10 @@
*/
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Security;
using System.Diagnostics;
#if ModernKeePassLib
using ModernKeePassLib.Resources;