2 instantiations of LiteKmac
System.Security.Cryptography (2)
System\Security\Cryptography\LiteHash.Windows.cs (2)
33return new LiteKmac(algorithmId, key, customizationString, xof); 157return new LiteKmac(clone, _finishFlags);
9 references to LiteKmac
System.Security.Cryptography (9)
System\Security\Cryptography\ConcurrentSafeKmac.cs (2)
10private readonly LiteKmac _liteKmac; 23private ConcurrentSafeKmac(LiteKmac liteKmac)
System\Security\Cryptography\HashProviderDispenser.Windows.cs (1)
105using (LiteKmac kmac = LiteHashProvider.CreateKmac(algorithmId, key, customizationString, xof))
System\Security\Cryptography\LiteHash.Windows.cs (2)
31internal static LiteKmac CreateKmac(string algorithmId, ReadOnlySpan<byte> key, ReadOnlySpan<byte> customizationString, bool xof) 154public LiteKmac Clone()
System\Security\Cryptography\LiteHashProvider.Xof.cs (4)
37LiteKmac hash = CreateKmac(hashAlgorithmId, key, customizationString, xof); 51LiteKmac hash = CreateKmac(hashAlgorithmId, key, customizationString, xof); 101LiteKmac hash = CreateKmac(hashAlgorithmId, key, customizationString, xof); 119LiteKmac hash = CreateKmac(hashAlgorithmId, key, customizationString, xof);