Flow 1 of 2
First call with scheme=jwt (AAuth-shaped)
- 1
Client holds a JWT whose cnf.jwk is the signing key (agent token or similar).
- 2
Client signs the HTTP request per RFC 9421, covering signature-key, and sends Signature-Key with scheme=jwt and the JWT.
- 3
Server reads scheme, validates the JWT (typ, iss, exp, signature via JWKS at iss + dwk), extracts cnf.jwk, verifies the HTTP signature.
- 4
On failure the server MAY return Signature-Error describing scheme/alg problems; the client may retry with a scheme from Accept-Signature-Scheme.