12 references to Signature
System.Security.Cryptography.Cose (12)
System\Security\Cryptography\Cose\CoseMessage.cs (2)
488
if (context == SigStructureContext.
Signature
)
521
if (context == SigStructureContext.
Signature
)
System\Security\Cryptography\Cose\CoseMultiSignMessage.cs (6)
455
AppendToBeSigned(buffer, toBeSignedBuilder, SigStructureContext.
Signature
, bodyProtected, buffer.Slice(0, signProtectedBytesWritten), associatedData, content, contentStream);
487
await AppendToBeSignedAsync(buffer, toBeSignedBuilder, SigStructureContext.
Signature
, bodyProtected, buffer.AsMemory(start, signProtectedBytesWritten), associatedData, contentStream, cancellationToken).ConfigureAwait(false);
772
SigStructureContext.
Signature
,
788
AppendToBeSigned(bufferSpan, toBeSignedBuilder, SigStructureContext.
Signature
, _protectedHeaderAsBstr, encodedSignProtected, associatedData, contentBytes, contentStream);
848
SigStructureContext.
Signature
,
861
await AppendToBeSignedAsync(buffer, toBeSignedBuilder, SigStructureContext.
Signature
, _protectedHeaderAsBstr, encodedSignProtected, associatedData, content, cancellationToken).ConfigureAwait(false);
System\Security\Cryptography\Cose\CoseSignature.cs (4)
619
SigStructureContext.
Signature
,
628
await CoseMessage.AppendToBeSignedAsync(buffer, toBeSignedBuilder, SigStructureContext.
Signature
, Message.RawProtectedHeaders, _encodedSignProtectedHeaders, associatedData, content, cancellationToken).ConfigureAwait(false);
650
SigStructureContext.
Signature
,
659
CoseMessage.AppendToBeSigned(buffer, toBeSignedBuilder, SigStructureContext.
Signature
, Message.RawProtectedHeaders.Span, _encodedSignProtectedHeaders, associatedData, contentBytes, contentStream);