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)
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)
387
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)
343
HMACCommon
hMacCommon = _hMacCommon;
353
private
HMACCommon
_hMacCommon;
System\Security\Cryptography\HMACSHA1.cs (2)
339
HMACCommon
hMacCommon = _hMacCommon;
349
private
HMACCommon
_hMacCommon;
System\Security\Cryptography\HMACSHA256.cs (2)
331
HMACCommon
hMacCommon = _hMacCommon;
341
private
HMACCommon
_hMacCommon;
System\Security\Cryptography\HMACSHA3_256.cs (2)
17
private
HMACCommon
_hMacCommon;
374
HMACCommon
hMacCommon = _hMacCommon;
System\Security\Cryptography\HMACSHA3_384.cs (2)
17
private
HMACCommon
_hMacCommon;
374
HMACCommon
hMacCommon = _hMacCommon;
System\Security\Cryptography\HMACSHA3_512.cs (2)
17
private
HMACCommon
_hMacCommon;
374
HMACCommon
hMacCommon = _hMacCommon;
System\Security\Cryptography\HMACSHA384.cs (2)
348
HMACCommon
hMacCommon = _hMacCommon;
358
private
HMACCommon
_hMacCommon;
System\Security\Cryptography\HMACSHA512.cs (2)
345
HMACCommon
hMacCommon = _hMacCommon;
355
private
HMACCommon
_hMacCommon;
System\Security\Cryptography\IncrementalHash.cs (2)
17
private
HMACCommon
? _hmac;
38
private IncrementalHash(HashAlgorithmName name,
HMACCommon
hmac)