2 instantiations of HMACSHA512
System.Web (2)
Security\Cryptography\CryptoAlgorithms.cs (2)
61
return new
HMACSHA512
();
65
return new
HMACSHA512
(key);
4 references to HMACSHA512
mscorlib (1)
system\security\cryptography\cryptoconfig.cs (1)
188
Type HMACSHA512Type = typeof(System.Security.Cryptography.
HMACSHA512
);
System.Web (3)
Security\Cryptography\CryptoAlgorithms.cs (2)
60
internal static
HMACSHA512
CreateHMACSHA512() {
64
internal static
HMACSHA512
CreateHMACSHA512(byte[] key) {
Security\Cryptography\SP800_108.cs (1)
55
using (
HMACSHA512
hmac = CryptoAlgorithms.CreateHMACSHA512(keyDerivationKey.GetKeyMaterial())) {