4 references to BCRYPT_SHA1_ALGORITHM
Microsoft.AspNetCore.Cryptography.Internal (2)
Cng\CachedAlgorithmHandles.cs (2)
17
private static CachedAlgorithmInfo _hmacSha1 = new CachedAlgorithmInfo(() => GetHmacAlgorithm(algorithm: Constants.
BCRYPT_SHA1_ALGORITHM
));
21
private static CachedAlgorithmInfo _sha1 = new CachedAlgorithmInfo(() => GetHashAlgorithm(algorithm: Constants.
BCRYPT_SHA1_ALGORITHM
));
Microsoft.AspNetCore.Cryptography.KeyDerivation (1)
PBKDF2\Win8Pbkdf2Provider.cs (1)
201
return Constants.
BCRYPT_SHA1_ALGORITHM
;
Microsoft.AspNetCore.DataProtection (1)
AuthenticatedEncryption\CngCbcAuthenticatedEncryptorFactory.cs (1)
81
if (configuration.HashAlgorithm == Constants.
BCRYPT_SHA1_ALGORITHM
) { algorithmHandle = CachedAlgorithmHandles.HMAC_SHA1; }