zitadel/internal/api/http
Tim Möhlmann fd0c15dd4f
feat(oidc): use web keys for token signing and verification (#8449)
# Which Problems Are Solved

Use web keys, managed by the `resources/v3alpha/web_keys` API, for OIDC
token signing and verification,
as well as serving the public web keys on the jwks / keys endpoint.
Response header on the keys endpoint now allows caching of the response.
This is now "safe" to do since keys can be created ahead of time and
caches have sufficient time to pickup the change before keys get
enabled.

# How the Problems Are Solved

- The web key format is used in the `getSignerOnce` function in the
`api/oidc` package.
- The public key cache is changed to get and store web keys.
- The jwks / keys endpoint returns the combined set of valid "legacy"
public keys and all available web keys.
- Cache-Control max-age default to 5 minutes and is configured in
`defaults.yaml`.

When the web keys feature is enabled, fallback mechanisms are in place
to obtain and convert "legacy" `query.PublicKey` as web keys when
needed. This allows transitioning to the feature without invalidating
existing tokens. A small performance overhead may be noticed on the keys
endpoint, because 2 queries need to be run sequentially. This will
disappear once the feature is stable and the legacy code gets cleaned
up.

# Additional Changes

- Extend legacy key lifetimes so that tests can be run on an existing
database with more than 6 hours apart.
- Discovery endpoint returns all supported algorithms when the Web Key
feature is enabled.

# Additional Context

- Closes https://github.com/zitadel/zitadel/issues/8031
- Part of https://github.com/zitadel/zitadel/issues/7809
- After https://github.com/zitadel/oidc/pull/637
- After https://github.com/zitadel/oidc/pull/638
2024-08-23 14:43:46 +02:00
..
middleware feat(oidc): use web keys for token signing and verification (#8449) 2024-08-23 14:43:46 +02:00
cookie.go fix: set user agent cookie on host only (without subdomains) (#7297) 2024-02-15 07:53:59 +01:00
domain_check.go feat: api v2beta to api v2 (#8283) 2024-07-26 22:39:55 +02:00
error_test.go fix: add information about target response into error message if inte… (#8281) 2024-08-16 11:26:15 +02:00
error.go fix: add information about target response into error message if inte… (#8281) 2024-08-16 11:26:15 +02:00
header.go fix: respect x-zitadel-forwarded header again (#8473) 2024-08-21 16:36:16 +00:00
marshal.go feat: api v2beta to api v2 (#8283) 2024-07-26 22:39:55 +02:00
origin.go refactor(fmt): run gci on complete project (#7557) 2024-04-03 10:43:43 +00:00
parser.go refactor: rename package errors to zerrors (#7039) 2023-12-08 15:30:55 +01:00
probes.go feat: add tracing interceptors to login and oidc (#764) 2020-10-21 10:18:34 +02:00
request_context.go feat: trusted (instance) domains (#8369) 2024-07-31 18:00:38 +03:00