5 references to HMACSHA512
Microsoft.AspNetCore.Cryptography.KeyDerivation (1)
PBKDF2\ManagedPbkdf2Provider.cs (1)
81return new HMACSHA512(passwordBytes);
Microsoft.AspNetCore.DataProtection (2)
Managed\AesGcmAuthenticatedEncryptor.cs (1)
38private static readonly Func<byte[], HashAlgorithm> _kdkPrfFactory = key => new HMACSHA512(key); // currently hardcoded to SHA512
Managed\ManagedAuthenticatedEncryptor.cs (1)
29private static readonly Func<byte[], HashAlgorithm> _kdkPrfFactory = key => new HMACSHA512(key); // currently hardcoded to SHA512
Microsoft.AspNetCore.DataProtection.Tests (1)
SP800_108\SP800_108Tests.cs (1)
167bytes => new HMACSHA512(bytes), derivedSubkeySegment);
System.Security.Cryptography (1)
System\Security\Cryptography\HMACSHA512.cs (1)
31: this(RandomNumberGenerator.GetBytes(BlockSize))