1 write to HashAlgorithm
System.Security.Cryptography.Cose (1)
System\Security\Cryptography\Cose\CoseKey.cs (1)
34
HashAlgorithm
= hashAlgorithm;
7 references to HashAlgorithm
System.Security.Cryptography.Cose (7)
System\Security\Cryptography\Cose\CoseKey.cs (6)
204
Debug.Assert(
HashAlgorithm
!= null);
206
return SignHashWithRSA(_rsaKey, toBeSigned,
HashAlgorithm
.Value, RSASignaturePadding, destination);
253
Debug.Assert(
HashAlgorithm
!= null);
254
return _rsaKey.VerifyHash(toBeSigned, signature,
HashAlgorithm
.Value, RSASignaturePadding);
336
Debug.Assert(
HashAlgorithm
!= null);
337
return new HashToBeSignedBuilder(
HashAlgorithm
.Value);
System\Security\Cryptography\Cose\CoseSigner.cs (1)
34
public HashAlgorithmName HashAlgorithm => CoseKey.
HashAlgorithm
?? default;