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