RFC015 Node identity
Last updated
Last updated
This RFC describes how to identify a node in the network. Node identification is required for exchanging private data. Measures to keep data private can range from encrypting data to sending data over a specific connection. Mutual TLS authentication form the basis of the node identification. The Subject Alternative Name of the certificate is matched against the serviceEndpoint of a specific service. The requirement for the additional service in the DID Document also makes it possible to find other nodes and thus enable service discovery of Nuts nodes.
Concepts like private addressing can greatly benefit from targeting specific nodes instead of individual DIDs. This RFC links individual DIDs to the service provider DID.
This document describes a Nuts standards protocol.
This document is released under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.
When all participants of a network share the same public data, there's no need to know which node services a particular organization. This changes when data becomes private. Private data needs to be routed to the correct node. In order for that to work, there's a need to identify each node and link that identity to services organizations.
Two things need to be resolved:
Node identity for peers that are connected. Network connections are the only interaction a node has to another node, so the connecting peer needs to be identified.
The DID subject that needs to receive the private data needs to be linked to a DID that has a node identity.
For the first point TLS and certificates will be used as basis.
Service provider: organization that runs the Nuts node and manages private keys for other organizations.
Other terminology comes from the Nuts Start Architecture.
TLS certificates are linked to a domain name via a SAN extension.
This domain is checked by a client that connects to a server with that domain. The certificate the server uses must match the domain the client dialed. Only identities of type dNSName
are to be considered. Multiple identities may exist in a certificate and wildcard domains are also possible. The value of the identity, example.com
in the example is used to link DIDs to certificates.
A DID Document can define services, this is decribed in RFC006. This RFC defines a new type of service: NutsComm
. The service has a serviceEndpoint
that defines the gRPC endpoint of a node.
The type
MUST be NutsComm
. Inter-node communication uses gRPC over HTTP/2. The serviceEndpoint
MUST start with grpc://
and end with the correct port number, :5555
in this example.
To determine the connecting identity, a DID
metadata header MAY be sent by each node upon establishing a connection. See RFC005 for more information about sending headers. If no such a header is sent, the connected peer remains anonymous. The validating node will resolve the DID document of the sent DID and will compare the serviceEndpoint
of the NutsComm
service with the SAN of the certificate that is related to the connection. A single match is sufficient when multiple DNS entries are available in the SAN extension. If no match is found the connected peer remains anonymous.
The hostname of the node and certificate SAN are validated according to RFC 6125, Appendix B (Common Name
is not supported).
This description applies to both client and server.
A service provider acts on behalf of its customers. It also operates the node that has access to the private keys and thus controls the DID Documents. When addressing an organization, it's usually sufficient to address the service provider since the service provider will route any message internally to the correct organization. The same holds for encrypting data for an organization: the service provider has access to their private key to decrypt the data. Addressing the service provider can greatly reduce the effort of the service provider to handle the data.
A great example for this is the RFC017 v2 network protocol where the added pal
header on the transaction is encrypted with the DID encryption key of the service provider. Decrypting such a header is a trial and error proces where the number of tries is reduced by a factor of hundreds.
To find the correct service provider for a DID, the DID Document MUST link to the DID Document of the service provider. The NutsComm
service is reused for this purpose. It'll contain a reference instead of an actual endpoint.
In order to really know who is at the other side of the connection, you'll have to do something with cryptography. This has already been invented and is called TLS. Not relying on TLS and building a system of our own would be very hard to get right. It's better to rely on a system that already checks for security vulnerabilities and fixes them fast.
Nuts foundation
W.M. Slakhorst
Request for Comments: 015
Nedap
Nov 2021