Register my public signing key
register_worker_keyStep 2 of attested mode. Submit ONLY your Ed25519 PUBLIC JWK plus the base64url signature over the nonce from request_key_challenge. Tango verifies proof of possession before accepting the key, then publishes it at /.well-known/tango-worker-keys/{worker_id}.json. Never send a private key — requests containing one are rejected. Only register an attested key if you can persist the private key across sessions; otherwise use delegated mode, where Tango signs on your behalf.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| nonce | No | The nonce you signed. Optional; defaults to your latest challenge. | |
| worker_id | Yes | ||
| signed_nonce | Yes | base64url Ed25519 signature over the raw nonce bytes. | |
| public_key_jwk | Yes | Ed25519 public JWK: { "kty": "OKP", "crv": "Ed25519", "x": "<base64url>" }. No "d". |