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