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)
42_hMacCommon = new HMACCommon(HashAlgorithmNames.MD5, key, BlockSize);
System\Security\Cryptography\HMACSHA1.cs (1)
41_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA1, key, BlockSize);
System\Security\Cryptography\HMACSHA256.cs (1)
40_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA256, key, BlockSize);
System\Security\Cryptography\HMACSHA3_256.cs (1)
64_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA3_256, key, BlockSize);
System\Security\Cryptography\HMACSHA3_384.cs (1)
64_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA3_384, key, BlockSize);
System\Security\Cryptography\HMACSHA3_512.cs (1)
64_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA3_512, key, BlockSize);
System\Security\Cryptography\HMACSHA384.cs (1)
40_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA384, key, BlockSize);
System\Security\Cryptography\HMACSHA512.cs (1)
40_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA512, key, BlockSize);
System\Security\Cryptography\IncrementalHash.cs (1)
388return 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)
343HMACCommon hMacCommon = _hMacCommon; 353private HMACCommon _hMacCommon;
System\Security\Cryptography\HMACSHA1.cs (2)
339HMACCommon hMacCommon = _hMacCommon; 349private HMACCommon _hMacCommon;
System\Security\Cryptography\HMACSHA256.cs (2)
331HMACCommon hMacCommon = _hMacCommon; 341private HMACCommon _hMacCommon;
System\Security\Cryptography\HMACSHA3_256.cs (2)
17private HMACCommon _hMacCommon; 374HMACCommon hMacCommon = _hMacCommon;
System\Security\Cryptography\HMACSHA3_384.cs (2)
17private HMACCommon _hMacCommon; 374HMACCommon hMacCommon = _hMacCommon;
System\Security\Cryptography\HMACSHA3_512.cs (2)
17private HMACCommon _hMacCommon; 374HMACCommon hMacCommon = _hMacCommon;
System\Security\Cryptography\HMACSHA384.cs (2)
348HMACCommon hMacCommon = _hMacCommon; 358private HMACCommon _hMacCommon;
System\Security\Cryptography\HMACSHA512.cs (2)
345HMACCommon hMacCommon = _hMacCommon; 355private HMACCommon _hMacCommon;
System\Security\Cryptography\IncrementalHash.cs (2)
17private HMACCommon? _hmac; 38private IncrementalHash(HashAlgorithmName name, HMACCommon hmac)