5 instantiations of ConcurrentSafeKmac
System.Security.Cryptography (5)
System\Security\Cryptography\ConcurrentSafeKmac.cs (1)
59return 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)
55public ConcurrentSafeKmac Clone()
System\Security\Cryptography\Kmac128.cs (2)
22private ConcurrentSafeKmac _kmacProvider; 59private Kmac128(ConcurrentSafeKmac kmacProvider)
System\Security\Cryptography\Kmac256.cs (2)
22private ConcurrentSafeKmac _kmacProvider; 59private Kmac256(ConcurrentSafeKmac kmacProvider)
System\Security\Cryptography\KmacXof128.cs (2)
22private ConcurrentSafeKmac _kmacProvider; 59private KmacXof128(ConcurrentSafeKmac kmacProvider)
System\Security\Cryptography\KmacXof256.cs (2)
22private ConcurrentSafeKmac _kmacProvider; 59private KmacXof256(ConcurrentSafeKmac kmacProvider)