v1

latestOpenAPI 3.1.0Apache 2.02026-07-26141310.8 KB
Signing

Generate a signing key pair

Creates a new ES256 (ECDSA P-256) key pair for signing and verification.

post/keygen

Response

Generated key pair

Example response

{
  "private": {
    "kty": "EC",
    "crv": "P-256",
    "alg": "ES256",
    "use": "sig"
  },
  "public": {
    "kty": "EC",
    "crv": "P-256",
    "alg": "ES256",
    "use": "sig"
  }
}