API Authentication
JWT Token Authentication
The Nuts Node’s HTTP APIs can be configured to require signed JWT tokens before allowing calls. Refer to Configuring for Production to find out how to configure it.
When enabled you need to pass a bearer token as Authorization header:
Authorization: Bearer (token)
When authentication fails the API will return HTTP 401 Unauthorized. The logs on the nuts-node will provide
an explanation about the failure.
Handle With Care
The JWTs and private keys used in this authentication scheme are secrets and should never be shared with anyone. No one should ever ask you to send them your JWTs or private keys.
nuts-jwt-generator
Tokens can be generated using the nuts-jwt-generator command, available on the nuts-foundation GitHub page.
JWT Generation in Code
JWT’s can be generated in code and must meet the following requirements:
The
issfield must be presentThe
issfield must match the username specified in the comment of anauthorized_keysentryThe
subfield must be present and non-empty (set it to the issuer if you are unsure which value to use)The
iatfield must be presentThe
nbffield must be presentThe
iatvalue must occur at or before thenbfvalueThe
expfield must be presentThe
expvalue must occur no more than 24 hours after theiatvalueThe
jtifield must be present and contain a UUID stringThe
audfield must be presentThe
audfield must contain the configuredauth.audienceparameter (hostname by default) on the nuts nodeThe JWT must be signed by a known ECDSA, Ed25519, or RSA (>=2048-bit) key as configured in
auth.authorizedkeyspathSignatures based on RSA keys may use the RS512 or PS512 algorithms only
The
kidfield must contain either the JWK SHA-256 Thumbprint (e.g.NzbLsXh8uDCcd-6MNwXF4W_7noWXFZAfHkxZsRGC9Xs) or the SSH SHA-256 fingerprint (e.g.SHA256:G5hwd24Zl7dyTsAGVxqyZk6z+oJ5UxWcIRL3fWGj7wk) of the signing keyThe JWT must not be encrypted
Forbidden JWT Fields
The following entries are forbidden in JWTs:
The
jwkfield, which embeds the public key, is forbiddenThe
jkufield, which embeds a URL for fetching the public key, is forbiddenThe
x5cfield, which embeds an X.509 certificate chain, is forbiddenThe
x5ufield, which embeds a URL for fetching the public key in X.509 form, is forbidden
Libraries
Libraries for generating JSON Web Tokens are available for all major programming languages.
Calling Application Requirements
Generally speaking for your application to access the protected API endpoints the following process must be followed:
Generate a private Ed25519, ECDSA, or RSA (>=2048-bit) key. Use Ed25519 if unsure which type to use.
Generate an
authorized_keysentry for your public key and configure the nuts-node with it. See Configuring for Production.Create a JWT, meeting the above specifications
Sign the JWT using the key generated in step 1.
Include the encoded JWT as a bearer token in the
Authorizationheader of API requests.Stop using the JWT before it expires, rotating it for a freshly generated JWT.
Be careful to keep your JWTs out of log messages etc., and treat them as secret at all times.
Generating SSH Fingerprint
- To generate the SSH fingerprint of a key using ssh-keygen:
ssh-keygen -lf /path/to/keyfile
- To generate the SSH fingerprint of a key using nuts-jwt-generator:
nuts-jwt-generator -i /path/to/keyfile -export-ssh-fingerprint
Generating JWK Thumbprint
- To generate the JWK fingerprint of a key using nuts-jwt-generator:
nuts-jwt-generator -i /path/to/keyfile -export-jwk-thumbprint
Audit Log Entries
When a user key is authorized (at server start) you will see an audit log entry such as the following:
AUDIT[0000] Registered key: ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOcJQ6jKFvO1fGqhRAHGK3XeJrUei+HcfuTr4phgW+M+ nuts-demo-ehr actor=127.0.0.1 event=AccessKeyRegistered module=http operation=tokenV2.middleware
When a request is unauthorized you will see an audit log entry such as the following:
AUDIT[4481] Access denied: missing/malformed credential actor="::1" event=AccessDenied module=http operation=tokenV2.middleware
When a request is authorized you will see an audit log entry such as the following:
AUDIT[4481] Access granted to user 'nuts-registry-admin-demo' with JWT 80e55d60-7b56-4891-b635-bc55505c6a56 issued to demo@nuts.nl by nuts-registry-admin-demo actor=demo@nuts.nl event=AccessGranted module=http operation=tokenV2.middleware
Legacy Token Authentication
You can configure the Nuts Node’s HTTP APIs to require legacy authentication before allowing calls. Refer to Configuring for Production to find out how to configure it.
When enabled you need to pass a bearer token as Authorization header:
Authorization: Bearer (token)
You generate a token by using the http gen-token command.
The example below generates a token for a user named “admin”, valid for 3 months:
nuts http gen-token admin 90
When authentication fails the API will return HTTP 401 Unauthorized with an explanatory message.