Convert an RSA private key (base64-encoded DER) into a JWKS (JSON Web Key
Set) document suitable for OAuth 2 / JWT providers. The issuer string becomes the
key’s kid. The JWKS is printed to stdout. (Source dir: utils/c/pkey_to_jwks.)
Usage¶
keycloak_pkey_to_jwks --key <base64-der> --issuer <issuer> > jwks.json| Option | Purpose |
|---|---|
--key | RSA private key, base64-encoded DER |
--issuer | Issuer string, used as the JWK kid |
See also¶
Auth, permissions, TLS — how Yuneta uses JWKS for JWT verification.