10 instantiations of HMACCommon
System.Security.Cryptography (10)
System\Security\Cryptography\HMACCommon.cs (1)
141
return 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)
449
return new IncrementalHash(hashAlgorithm, new
HMACCommon
(hashAlgorithm.Name, key, -1));
19 references to HMACCommon
System.Security.Cryptography (19)
System\Security\Cryptography\HMACCommon.cs (1)
139
public
HMACCommon
Clone()
System\Security\Cryptography\HMACMD5.cs (2)
417
HMACCommon
hMacCommon = _hMacCommon;
427
private
HMACCommon
_hMacCommon;
System\Security\Cryptography\HMACSHA1.cs (2)
404
HMACCommon
hMacCommon = _hMacCommon;
414
private
HMACCommon
_hMacCommon;
System\Security\Cryptography\HMACSHA256.cs (2)
396
HMACCommon
hMacCommon = _hMacCommon;
406
private
HMACCommon
_hMacCommon;
System\Security\Cryptography\HMACSHA3_256.cs (2)
24
private
HMACCommon
_hMacCommon;
442
HMACCommon
hMacCommon = _hMacCommon;
System\Security\Cryptography\HMACSHA3_384.cs (2)
24
private
HMACCommon
_hMacCommon;
442
HMACCommon
hMacCommon = _hMacCommon;
System\Security\Cryptography\HMACSHA3_512.cs (2)
24
private
HMACCommon
_hMacCommon;
442
HMACCommon
hMacCommon = _hMacCommon;
System\Security\Cryptography\HMACSHA384.cs (2)
413
HMACCommon
hMacCommon = _hMacCommon;
423
private
HMACCommon
_hMacCommon;
System\Security\Cryptography\HMACSHA512.cs (2)
410
HMACCommon
hMacCommon = _hMacCommon;
420
private
HMACCommon
_hMacCommon;
System\Security\Cryptography\IncrementalHash.cs (2)
17
private
HMACCommon
? _hmac;
38
private IncrementalHash(HashAlgorithmName name,
HMACCommon
hmac)