Options
All
  • Public
  • Public/Protected
  • All
Menu

Class AttestationSigningKey

Package version

Creates an instance of AttestationSigningKey.

An AttestationSigningKey represents a tuple<AsymmetricKey, Certificate> where the certificate wraps the public portion of the asymmetric key. It is used in signing Attestation JSON Web Tokens.

Example usage:

import { AttestationSigningKey } from "@azure/security-attestation";

const client = new AttestationSigningKey(
   "<key value>", "<certificate value>"
);

Hierarchy

  • AttestationSigningKey

Index

Constructors

Properties

Constructors

constructor

Properties

certificate

certificate: string

An X.509 Certificate wrapping the key which will be included in a signed AttestationToken.

key

key: string

The PEM encoded RSA or ECDS key to sign an AttestationToken.

Generated using TypeDoc