1. Generate an EC P-256 Key Pair for JWT Signing
Backend DeveloperBackground
A developer needs to configure an OAuth2 authorization server that signs tokens using Elliptic Curve cryptography.
Problem
They need a valid P-256 EC key pair formatted as a JWK with a specific Key ID.
How to use
Set Mode to 'Generate', Key Type to 'EC', Curve to 'P-256', and enter 'auth-key-v1' in the Key ID field. Leave 'Public Only' unchecked to get both public and private parameters.
Mode: Generate, Key Type: EC, Curve: P-256, Key ID: auth-key-v1, Public Only: falseOutcome
A JSON object containing the private and public parameters (kty, crv, x, y, d, kid) ready for use in the server configuration.