4 implementations of IKmacStatic
System.Security.Cryptography (4)
System\Security\Cryptography\Kmac128.cs (1)
22private sealed class KmacTrait : IKmacStatic
System\Security\Cryptography\Kmac256.cs (1)
22private sealed class KmacTrait : IKmacStatic
System\Security\Cryptography\KmacXof128.cs (1)
22private sealed class KmacTrait : IKmacStatic
System\Security\Cryptography\KmacXof256.cs (1)
22private sealed class KmacTrait : IKmacStatic
13 references to IKmacStatic
System.Security.Cryptography (13)
System\Security\Cryptography\Kmac128.cs (3)
24static string IKmacStatic.HashAlgorithmName => HashAlgorithmNames.KMAC128; 25static bool IKmacStatic.IsSupported => IsSupported; 26static bool IKmacStatic.IsXof => false;
System\Security\Cryptography\Kmac256.cs (3)
24static string IKmacStatic.HashAlgorithmName => HashAlgorithmNames.KMAC256; 25static bool IKmacStatic.IsSupported => IsSupported; 26static bool IKmacStatic.IsXof => false;
System\Security\Cryptography\KmacStatic.cs (1)
19internal static class KmacStatic<TKmac> where TKmac : IKmacStatic
System\Security\Cryptography\KmacXof128.cs (3)
24static string IKmacStatic.HashAlgorithmName => HashAlgorithmNames.KMAC128; 25static bool IKmacStatic.IsSupported => IsSupported; 26static bool IKmacStatic.IsXof => true;
System\Security\Cryptography\KmacXof256.cs (3)
24static string IKmacStatic.HashAlgorithmName => HashAlgorithmNames.KMAC256; 25static bool IKmacStatic.IsSupported => IsSupported; 26static bool IKmacStatic.IsXof => true;