Update DID
Updating a DID document is a reserved operation for the DID’s controller. As described in the
Getting Started guide, the prerequisite for managing a DID document is access to the DID’s
cryptographic privat key. In the following sections, the private key is assumed to be stored in file person.jwk
.
Update did:web DID
Let’s add a second key to the DID: did:web:localhost%3A8000:person
did-web-server uses DIDs, Verifiable Credentials (VCs) and Verifiable Presentations (VPs) to verify access and encode data. The following diagram depicts the preparation process for an updated DID document to be sent to and stored on the server:
- First, another cryptographic key is created.
- The DID document is updated to include the second key.
- A Verifiable Credential is created that includes the DID document. The VC is signed by an authorized key.
- A Verifiable Presentation is created that includes the VC. The VP is signed by an authorized key. To mitigate replay attacks, the VP must also contain specific proof parameters that can be retrieved from did-web-server.
- If the submitted VP and VC are successfully verified, the included DID document is stored on the server.
Create second key
Every DID requires a public private key pair. We can reuse the previous command to create another key pair for the new DID:
Let’s store the DID in a file for quick access:
Update DID document
Execute the following command to create the DID document that includes both public keys:
Place DID document in Verifiable Credential
Since did-web-server uses Verifiable Credentials for authentication and authorization, and DID documents as data, the created DID document needs to be placed within a Verifiable Credential. Execute the following command to create and sign the credential:
Sign credential:
Place Verifiable Credential in Verifiable Presentation
The last step in preparing the data for submission is to place the signed Verifiable Credential within a Verifiable Presentation and secure the registration against replay attacks. did-web-server prevents reply attacks, i.e. the observation and resubmission of a valid presentation with the goal of overwriting the current configuration of the DID, by expecting the hash of the current DID document to be present as a challenge in the proof section of the Verifiable Presentation, alongside other parameters.
The first step of placing the Verifiable Credential inside a Verifiable Presentation is to retrieve the proof parameters for the DID:
With the proof parameters in place, the next step is to create the presentation:
Finally, sign the presentation with the correct proof parameters:
Update DID on server
The last step is to submit the signed presentation to the server:
Let’s retrieve the DID document from did-web-server for inspection:
Congratulations, you’ve updated the DID document! 🎉