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