v1

latestOpenAPI 3.1.02026-07-262218115.4 KB

Retrieve a public key in JWK format.

get/jwe/key

Response

Successful request.

algstring

Algorithm intended for use with the key.

estring

Exponent value for the RSA public key in Base64 URL format.

key_opsstring[]

Operation permitted for the key.

kidstring

Unique identifier for the kid.

ktystring

Type of key.

nstring

Modulus value for the RSA public key in Base64 URL format.

usestring

Intended use of the key.

Example response

{
  "alg": "RSA-OAEP-256",
  "e": "...",
  "key_ops": [
    "encrypt"
  ],
  "kid": "...",
  "kty": "RSA",
  "n": "...",
  "use": "enc"
}