mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-04 08:00:16 -04:00
WIP - Implementing HMAC with BouncyCastle
This commit is contained in:

committed by
BONNEVILLE Geoffroy

parent
c82d6d001d
commit
84e7afc819
@@ -95,12 +95,12 @@ namespace ModernKeePassLib.Keys
|
||||
{
|
||||
try
|
||||
{
|
||||
string str = StrUtil.Utf8.GetString(pb, 0, pb.Length);
|
||||
#if ModernKeePassLib
|
||||
// TODO: find a way to implement this
|
||||
return true;
|
||||
#else
|
||||
return str.IsNormalized(NormalizationForm.FormC);
|
||||
string str = StrUtil.Utf8.GetString(pb);
|
||||
return str.IsNormalized(NormalizationForm.FormC);
|
||||
#endif
|
||||
}
|
||||
catch(Exception) { Debug.Assert(false); }
|
||||
@@ -108,5 +108,5 @@ namespace ModernKeePassLib.Keys
|
||||
return false;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user