8 implementations of IHMACStatic
System.Security.Cryptography (8)
System\Security\Cryptography\HMACMD5.cs (1)
20
private sealed class HMACTrait :
IHMACStatic
System\Security\Cryptography\HMACSHA1.cs (1)
21
private sealed class HMACTrait :
IHMACStatic
System\Security\Cryptography\HMACSHA256.cs (1)
20
private sealed class HMACTrait :
IHMACStatic
System\Security\Cryptography\HMACSHA3_256.cs (1)
17
private sealed class HMACTrait :
IHMACStatic
System\Security\Cryptography\HMACSHA3_384.cs (1)
17
private sealed class HMACTrait :
IHMACStatic
System\Security\Cryptography\HMACSHA3_512.cs (1)
17
private sealed class HMACTrait :
IHMACStatic
System\Security\Cryptography\HMACSHA384.cs (1)
20
private sealed class HMACTrait :
IHMACStatic
System\Security\Cryptography\HMACSHA512.cs (1)
20
private sealed class HMACTrait :
IHMACStatic
25 references to IHMACStatic
System.Security.Cryptography (25)
System\Security\Cryptography\HMACMD5.cs (3)
22
static int
IHMACStatic
.HashSizeInBytes => HashSizeInBytes;
23
static string
IHMACStatic
.HashAlgorithmName => HashAlgorithmNames.MD5;
27
static bool
IHMACStatic
.IsSupported => true;
System\Security\Cryptography\HMACSHA1.cs (3)
23
static int
IHMACStatic
.HashSizeInBytes => HashSizeInBytes;
24
static string
IHMACStatic
.HashAlgorithmName => HashAlgorithmNames.SHA1;
25
static bool
IHMACStatic
.IsSupported => true;
System\Security\Cryptography\HMACSHA256.cs (3)
22
static int
IHMACStatic
.HashSizeInBytes => HashSizeInBytes;
23
static string
IHMACStatic
.HashAlgorithmName => HashAlgorithmNames.SHA256;
24
static bool
IHMACStatic
.IsSupported => true;
System\Security\Cryptography\HMACSHA3_256.cs (3)
19
static int
IHMACStatic
.HashSizeInBytes => HashSizeInBytes;
20
static string
IHMACStatic
.HashAlgorithmName => HashAlgorithmNames.SHA3_256;
21
static bool
IHMACStatic
.IsSupported => IsSupported;
System\Security\Cryptography\HMACSHA3_384.cs (3)
19
static int
IHMACStatic
.HashSizeInBytes => HashSizeInBytes;
20
static string
IHMACStatic
.HashAlgorithmName => HashAlgorithmNames.SHA3_384;
21
static bool
IHMACStatic
.IsSupported => IsSupported;
System\Security\Cryptography\HMACSHA3_512.cs (3)
19
static int
IHMACStatic
.HashSizeInBytes => HashSizeInBytes;
20
static string
IHMACStatic
.HashAlgorithmName => HashAlgorithmNames.SHA3_512;
21
static bool
IHMACStatic
.IsSupported => IsSupported;
System\Security\Cryptography\HMACSHA384.cs (3)
22
static int
IHMACStatic
.HashSizeInBytes => HashSizeInBytes;
23
static string
IHMACStatic
.HashAlgorithmName => HashAlgorithmNames.SHA384;
24
static bool
IHMACStatic
.IsSupported => true;
System\Security\Cryptography\HMACSHA512.cs (3)
22
static int
IHMACStatic
.HashSizeInBytes => HashSizeInBytes;
23
static string
IHMACStatic
.HashAlgorithmName => HashAlgorithmNames.SHA512;
24
static bool
IHMACStatic
.IsSupported => true;
System\Security\Cryptography\HMACStatic.cs (1)
22
internal static class HMACStatic<THMAC> where THMAC :
IHMACStatic