1 write to _mldsaKey
System.Security.Cryptography.Cose (1)
System\Security\Cryptography\Cose\CoseKey.cs (1)
66
_mldsaKey
= key;
6 references to _mldsaKey
System.Security.Cryptography.Cose (6)
System\Security\Cryptography\Cose\CoseKey.cs (6)
182
return
_mldsaKey
!.Algorithm.SignatureSizeInBytes;
204
Debug.Assert(
_mldsaKey
!= null);
205
Span<byte> mldsaSignature = destination.Slice(0,
_mldsaKey
.Algorithm.SignatureSizeInBytes);
206
_mldsaKey
.SignData(toBeSigned, mldsaSignature);
256
Debug.Assert(
_mldsaKey
!= null);
257
return
_mldsaKey
.VerifyData(toBeSigned, signature);