7 references to CoseKey
System.Security.Cryptography.Cose (7)
System\Security\Cryptography\Cose\CoseKey.cs (6)
85
CoseAlgorithm.RS256 => new
CoseKey
(rsaKey, RSASignaturePadding.Pkcs1, HashAlgorithmName.SHA256),
86
CoseAlgorithm.RS384 => new
CoseKey
(rsaKey, RSASignaturePadding.Pkcs1, HashAlgorithmName.SHA384),
87
CoseAlgorithm.RS512 => new
CoseKey
(rsaKey, RSASignaturePadding.Pkcs1, HashAlgorithmName.SHA512),
88
CoseAlgorithm.PS256 => new
CoseKey
(rsaKey, RSASignaturePadding.Pss, HashAlgorithmName.SHA256),
89
CoseAlgorithm.PS384 => new
CoseKey
(rsaKey, RSASignaturePadding.Pss, HashAlgorithmName.SHA384),
90
CoseAlgorithm.PS512 => new
CoseKey
(rsaKey, RSASignaturePadding.Pss, HashAlgorithmName.SHA512),
System\Security\Cryptography\Cose\CoseSigner.cs (1)
115
CoseKey = new
CoseKey
(key, signaturePadding, hashAlgorithm);