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