mirror of
https://github.com/wismna/ModernKeePassLib.git
synced 2025-10-03 23:50:20 -04:00
Downgrade to net standard 1.2
This commit is contained in:
@@ -65,7 +65,14 @@ namespace ModernKeePassLib.Cryptography
|
||||
if(vPassword.Length == 0) { uDictSize = 0; return false; }
|
||||
|
||||
#if DEBUG
|
||||
#if ModernKeePassLib
|
||||
foreach (var ch in vPassword)
|
||||
{
|
||||
Debug.Assert(ch == char.ToLower(ch));
|
||||
}
|
||||
#else
|
||||
Array.ForEach(vPassword, ch => Debug.Assert(ch == char.ToLower(ch)));
|
||||
#endif
|
||||
#endif
|
||||
|
||||
try { return IsPopularPasswordPriv(vPassword, out uDictSize); }
|
||||
|
Reference in New Issue
Block a user