6 references to BCRYPT_SHA512_ALGORITHM
Microsoft.AspNetCore.Cryptography.Internal (2)
Cng\CachedAlgorithmHandles.cs (2)
19
private static CachedAlgorithmInfo _hmacSha512 = new CachedAlgorithmInfo(() => GetHmacAlgorithm(algorithm: Constants.
BCRYPT_SHA512_ALGORITHM
));
23
private static CachedAlgorithmInfo _sha512 = new CachedAlgorithmInfo(() => GetHashAlgorithm(algorithm: Constants.
BCRYPT_SHA512_ALGORITHM
));
Microsoft.AspNetCore.Cryptography.KeyDerivation (1)
PBKDF2\Win8Pbkdf2Provider.cs (1)
205
return Constants.
BCRYPT_SHA512_ALGORITHM
;
Microsoft.AspNetCore.DataProtection (2)
AuthenticatedEncryption\AuthenticatedEncryptorFactory.cs (1)
159
return Constants.
BCRYPT_SHA512_ALGORITHM
;
AuthenticatedEncryption\CngCbcAuthenticatedEncryptorFactory.cs (1)
83
else if (configuration.HashAlgorithm == Constants.
BCRYPT_SHA512_ALGORITHM
) { algorithmHandle = CachedAlgorithmHandles.HMAC_SHA512; }
Microsoft.AspNetCore.DataProtection.Tests (1)
AuthenticatedEncryption\ConfigurationModel\CngCbcAuthenticatedEncryptorDescriptorDeserializerTests.cs (1)
28
HashAlgorithm = Constants.
BCRYPT_SHA512_ALGORITHM
,