trustFrameworkKey resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Represents a JWK (JSON Web Key). TrustFrameworkKey is a JSON data structure that represents a cryptographic key. The structure of this resource follows the format defined in RFC 7517 Section 4.

Properties

Property Type Description
kid string The unique identifier for the key.
kty String The kty (key type) parameter identifies the cryptographic algorithm family used with the key, The valid values are rsa, oct.
use String The use (public key use) parameter identifies the intended use of the public key. The use parameter is employed to indicate whether a public key is used for encrypting data or verifying the signature on data. Possible values are: sig (signature), enc (encryption)
x5c string collection The x5c (X.509 certificate chain) parameter contains a chain of one or more PKIX certificates RFC 5280.
x5t string The x5t (X.509 certificate SHA-1 thumbprint) parameter is a base64url-encoded SHA-1 thumbprint (also known as digest) of the DER encoding of an X.509 certificate RFC 5280.
e string RSA Key - public exponent
d string RSA Key - private exponent. Field can't be read back.
n string RSA Key - modulus
p string RSA Key - first prime. Field can't be read back.
q string RSA Key - second prime. Field can't be read back.
dp string RSA Key - first exponent. Field can't be read back.
dq string RSA Key - second exponent. Field can't be read back.
qi string RSA Key - Coefficient. Field can't be read back.
k string Symmetric Key for oct key type. Field can't be read back.
nbf int This value is a NumericDate as defined in RFC 7519 (A JSON numeric value representing the number of seconds from 1970-01-01T00:00:00Z UTC until the specified UTC date/time, ignoring leap seconds.)
exp int This value is a NumericDate as defined in RFC 7519 (A JSON numeric value representing the number of seconds from 1970-01-01T00:00:00Z UTC until the specified UTC date/time, ignoring leap seconds.)

JSON representation

The following JSON representation shows the resource type.

{
  "d": "String",
  "dp": "String",
  "dq": "String",
  "e": "String",
  "exp": 1024,
  "k": "String",
  "kid": "String",
  "kty": "String",
  "n": "String",
  "nbf": 1024,
  "p": "String",
  "q": "String",
  "qi": "String",
  "use": "String",
  "x5c": ["String"],
  "x5t": "String"
}