AttestationTokenSigningKey Class

Definition

An AttestationSigningKey encapsulates the two pieces of information necessary to sign a token:

  • Signing Key: the key used to sign the token
  • Signing Certificate: an X.509 certificate which wraps the public key part of the Signing Key.

Note that the Attestation Service only supports validation of tokens which are signed with an X.509 certificate, it does not support arbitrary signing keys.
public class AttestationTokenSigningKey
type AttestationTokenSigningKey = class
Public Class AttestationTokenSigningKey
Inheritance
AttestationTokenSigningKey

Constructors

AttestationTokenSigningKey(AsymmetricAlgorithm, X509Certificate2)

Creates a new instance of a AttestationTokenSigningKey

AttestationTokenSigningKey(X509Certificate2)

Creates a new instance of a AttestationTokenSigningKey

Properties

Certificate

Gets the X.509 Certificate which will be transmitted to the attestation service to validate the signed token.

Signer

Gets the signer used to sign the attestation token

Applies to