10 instantiations of HMACCommon
System.Security.Cryptography (10)
System\Security\Cryptography\HMACCommon.cs (1)
141return new HMACCommon(_hashAlgorithmId, _hMacProvider.Clone(), _blockSize, ActualKey);
System\Security\Cryptography\HMACMD5.cs (1)
52_hMacCommon = new HMACCommon(HashAlgorithmNames.MD5, key, BlockSize);
System\Security\Cryptography\HMACSHA1.cs (1)
48_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA1, key, BlockSize);
System\Security\Cryptography\HMACSHA256.cs (1)
47_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA256, key, BlockSize);
System\Security\Cryptography\HMACSHA3_256.cs (1)
71_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA3_256, key, BlockSize);
System\Security\Cryptography\HMACSHA3_384.cs (1)
71_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA3_384, key, BlockSize);
System\Security\Cryptography\HMACSHA3_512.cs (1)
71_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA3_512, key, BlockSize);
System\Security\Cryptography\HMACSHA384.cs (1)
47_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA384, key, BlockSize);
System\Security\Cryptography\HMACSHA512.cs (1)
47_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA512, key, BlockSize);
System\Security\Cryptography\IncrementalHash.cs (1)
449return new IncrementalHash(hashAlgorithm, new HMACCommon(hashAlgorithm.Name, key, -1));
19 references to HMACCommon
System.Security.Cryptography (19)
System\Security\Cryptography\HMACCommon.cs (1)
139public HMACCommon Clone()
System\Security\Cryptography\HMACMD5.cs (2)
417HMACCommon hMacCommon = _hMacCommon; 427private HMACCommon _hMacCommon;
System\Security\Cryptography\HMACSHA1.cs (2)
404HMACCommon hMacCommon = _hMacCommon; 414private HMACCommon _hMacCommon;
System\Security\Cryptography\HMACSHA256.cs (2)
396HMACCommon hMacCommon = _hMacCommon; 406private HMACCommon _hMacCommon;
System\Security\Cryptography\HMACSHA3_256.cs (2)
24private HMACCommon _hMacCommon; 442HMACCommon hMacCommon = _hMacCommon;
System\Security\Cryptography\HMACSHA3_384.cs (2)
24private HMACCommon _hMacCommon; 442HMACCommon hMacCommon = _hMacCommon;
System\Security\Cryptography\HMACSHA3_512.cs (2)
24private HMACCommon _hMacCommon; 442HMACCommon hMacCommon = _hMacCommon;
System\Security\Cryptography\HMACSHA384.cs (2)
413HMACCommon hMacCommon = _hMacCommon; 423private HMACCommon _hMacCommon;
System\Security\Cryptography\HMACSHA512.cs (2)
410HMACCommon hMacCommon = _hMacCommon; 420private HMACCommon _hMacCommon;
System\Security\Cryptography\IncrementalHash.cs (2)
17private HMACCommon? _hmac; 38private IncrementalHash(HashAlgorithmName name, HMACCommon hmac)