CoseSignature Class

Definition

Represents a COSE_Signature that carries one signature and information about that signature associated with a CoseMultiSignMessage.

public ref class CoseSignature sealed
public sealed class CoseSignature
type CoseSignature = class
Public NotInheritable Class CoseSignature
Inheritance
CoseSignature

Properties

ProtectedHeaders

Gets the protected header parameters associated with this instance.

RawProtectedHeaders

Gets the raw bytes of the protected header parameters associated with this instance.

Signature

Gets the digital signature.

UnprotectedHeaders

Gets the unprotected header parameters associated with this instance.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)
VerifyDetached(AsymmetricAlgorithm, Byte[], Byte[])

Verifies that the signature is valid for the message's content using the specified key.

VerifyDetached(AsymmetricAlgorithm, ReadOnlySpan<Byte>, ReadOnlySpan<Byte>)

Verifies that the signature is valid for the message's content using the specified key.

VerifyDetached(AsymmetricAlgorithm, Stream, ReadOnlySpan<Byte>)

Verifies that the signature is valid for the message's content using the specified key.

VerifyDetachedAsync(AsymmetricAlgorithm, Stream, ReadOnlyMemory<Byte>, CancellationToken)

Asynchronously verifies that the signature is valid for the message's content using the specified key.

VerifyEmbedded(AsymmetricAlgorithm, Byte[])

Verifies that the signature is valid for the message's content using the specified key.

VerifyEmbedded(AsymmetricAlgorithm, ReadOnlySpan<Byte>)

Verifies that the signature is valid for the message's content using the specified key.

Applies to