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