5 instantiations of ConcurrentSafeKmac
System.Security.Cryptography (5)
System\Security\Cryptography\ConcurrentSafeKmac.cs (1)
59
return new
ConcurrentSafeKmac
(_liteKmac.Clone());
System\Security\Cryptography\Kmac128.cs (1)
56
_kmacProvider = new
ConcurrentSafeKmac
(HashAlgorithmNames.KMAC128, key, customizationString, xof: false);
System\Security\Cryptography\Kmac256.cs (1)
56
_kmacProvider = new
ConcurrentSafeKmac
(HashAlgorithmNames.KMAC256, key, customizationString, xof: false);
System\Security\Cryptography\KmacXof128.cs (1)
56
_kmacProvider = new
ConcurrentSafeKmac
(HashAlgorithmNames.KMAC128, key, customizationString, xof: true);
System\Security\Cryptography\KmacXof256.cs (1)
56
_kmacProvider = new
ConcurrentSafeKmac
(HashAlgorithmNames.KMAC256, key, customizationString, xof: true);
9 references to ConcurrentSafeKmac
System.Security.Cryptography (9)
System\Security\Cryptography\ConcurrentSafeKmac.cs (1)
55
public
ConcurrentSafeKmac
Clone()
System\Security\Cryptography\Kmac128.cs (2)
22
private
ConcurrentSafeKmac
_kmacProvider;
59
private Kmac128(
ConcurrentSafeKmac
kmacProvider)
System\Security\Cryptography\Kmac256.cs (2)
22
private
ConcurrentSafeKmac
_kmacProvider;
59
private Kmac256(
ConcurrentSafeKmac
kmacProvider)
System\Security\Cryptography\KmacXof128.cs (2)
22
private
ConcurrentSafeKmac
_kmacProvider;
59
private KmacXof128(
ConcurrentSafeKmac
kmacProvider)
System\Security\Cryptography\KmacXof256.cs (2)
22
private
ConcurrentSafeKmac
_kmacProvider;
59
private KmacXof256(
ConcurrentSafeKmac
kmacProvider)