2 instantiations of HMACSHA512
Microsoft.AspNetCore.Cryptography.KeyDerivation (1)
PBKDF2\ManagedPbkdf2Provider.cs (1)
81return new HMACSHA512(passwordBytes);
Microsoft.AspNetCore.DataProtection (1)
AuthenticatedEncryption\ManagedAuthenticatedEncryptorFactory.cs (1)
74return () => new HMACSHA512();
14 references to HMACSHA512
Microsoft.AspNetCore.DataProtection (9)
AuthenticatedEncryption\AuthenticatedEncryptorFactory.cs (1)
193return typeof(HMACSHA512);
AuthenticatedEncryption\ConfigurationModel\ManagedAlgorithmHelpers.cs (1)
20typeof(HMACSHA512)
AuthenticatedEncryption\ManagedAuthenticatedEncryptorFactory.cs (1)
72else if (configuration.ValidationAlgorithmType == typeof(HMACSHA512))
Managed\ManagedAuthenticatedEncryptor.cs (4)
247else if (validationAlgorithm is HMACSHA512) 249HMACSHA512.HashData(key: validationSubkey, source: ivAndCipherTextSpan, destination: macDestinationSpan); 411else if (validationAlgorithm is HMACSHA512) 413bytesWritten = HMACSHA512.HashData(key: validationSubkey, source: dataToValidate, destination: correctHash);
SP800_108\ManagedSP800_108_CTR_HMACSHA512.cs (2)
84HMACSHA512.HashSizeInBytes; 138var success = HMACSHA512.TryHashData(kdk, prfInput, prfOutput, out var bytesWritten);
mscorlib (1)
src\runtime\src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
889[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.HMACSHA512))]
netstandard (1)
netstandard.cs (1)
1886[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.HMACSHA512))]
System.Security.Cryptography (2)
System\Security\Cryptography\CryptoConfig.cs (1)
125Type HMACSHA512Type = typeof(System.Security.Cryptography.HMACSHA512);
System\Security\Cryptography\Helpers.cs (1)
374return HMACSHA512.HashSizeInBytes;
System.Security.Cryptography.Algorithms (1)
System.Security.Cryptography.Algorithms.cs (1)
32[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.HMACSHA512))]