Decentralized identifiers (DIDs) are a new type of identifiers that enables verifiable, self-sovereign digital identity. This Klaytn DID method specification describes a new DID method, that is, Klaytn DID and defines how Klaytn blockchain stores Klaytn DIDs and their corresponding DID documents, and how to do CRUD operations on Klaytn DID documents.
This specification conforms to the requirements specified in the DIDs specification currently published by the W3C Credentials Community Group.
The namestring that shall identify this DID method is: klay
.
A DID that uses this method MUST begin with the following prefix: did:klay
. Per this DID specification, this string MUST be in lowercase.
The remainder of the DID, after the prefix, is its namespace-specific identifier specified below.
The namespace specific identifier is defined by the following ABNF:
klay-did = "did:klay:" klay-specific-idstring
klay-specific-idstring = 40*40HEXDIG
A valid Klaytn DID might be:
did:klay:1f4B9d871fed2dEcb2670A80237F7253DB5766De
The following section outlines the DID operations for the did:klay
method.
Klaytn DIDs reside on the Klaytn blockchain, and are managed via the Klaytn DID management smart contract.
For the sake of convenience, we refer to the Klaytn DID management smart contract as 'the registry'.
The Klaytn DID creation is implicit and it does not reqiure any interaction with the registry.
A subject who has a Klaytn address need not invoke any method and will automatically own a Klaytn DID that concatenating "did:klay:" and the Klaytn address without a 0x
prefix.
For instance, Alice, who has a Klaytn address 0x1f4B9d871fed2dEcb2670A80237F7253DB5766De
, will automatically become the subject of did:klay:1f4B9d871fed2dEcb2670A80237F7253DB5766De
.
Klaytn DID's associated DID document can be looked up by invoking the getDocument
method of the registry.
To ensure the smart contract invocation result is trustworthy, the client could query a certain number of nodes and then compare the return values or deploy its own node.
The interface method for resolving a Klaytn DID document is defined as follows:
get_document()
Besides this full-fledged resolver, the Klaytn blockchain provides other simple resolvers, such as fetching the authentication
property.
{
"@context": ["https://www.w3.org/ns/did/v1"],
"id": "did:klay:1f4B9d871fed2dEcb2670A80237F7253DB5766De",
"publicKey": [
{
"id": "did:klay:1f4B9d871fed2dEcb2670A80237F7253DB5766De#keys-1",
"type": "EcdsaSecp256k1VerificationKey2019",
"controller": "did:klay:1f4B9d871fed2dEcb2670A80237F7253DB5766De",
"publicKeyHex": "0xfbf38de9fb40edcdab412094d24fa39a314f3d3f52f5860e2509c32522eda30161fe70dfc9f90434d64bd976ede4f112d4f2d8e34d28fe48281663219d2ddac6"
}
],
"authentication": [
"did:klay:1f4B9d871fed2dEcb2670A80237F7253DB5766De#keys-1"
]
}
To update a Klaytn DID document, the corresponding Klaytn DID subject just need to invoke relevant functions.
For instance, the Klaytn DID subject can invoke the addController
method to add a delegate which has the authorization to insert a new verification method into the authentication
property of the delegated Klaytn DID.
The interface method for adding a delegate Klaytn DID is defined as follows:
add_controller(delegate: String)
The delegate
parameter specifies the to-be-added controller.
Similarly, the interface method for removing a delegate Klaytn DID is defined as follows:
remove_controller(delegate: String)
The delegate
parameter specifies the to-be-removed controller.
Here we do not provide the full list of supported update methods and will provide specific documentation which lists all of the related APIs.
To delete (or deactivate) a Klaytn DID, it suffices to remove all the verification methods from its associated DID document and set a flag in the registry to indicate the DID is deactivated. In this case, there is no authentication method that can be used to authenticate the holder's identity.
The interface method for deactivating a Klaytn DID document is defined as follows:
deactivate_did(did: String)
The did
parameter specifies the to-be-deactivated Klaytn DID.
More importantly, the deletion of a Klaytn DID implies this DID cannot be registered or reactivated again.
There are several securities and privacy considerations that implementers would want to take into consideration when implementing this specification.
The current Klaytn DID implementation does not allow a Klaytn address to have multiple Klaytn DIDs, and if the Klaytn DID is deactivated, the corresponding Klaytn address cannot access the deactivated Klaytn DID. Hence, it loses all capability to perform operations on that Klaytn DID.
Since the delegates specified in the controller
property can change the value of authentication
, they have the same privileges as the DID subject.
Klaytn DID documents should be limited to verification methods and service endpoints, and should not store any personal information.
The reference implementation is available here: https://github.com/ontology-tech/DID-solidity/tree/klaytn-did
[1]. Klaytn, https://www.klaytn.com/
[2]. W3C Decentralized Identifiers (DIDs) v1.0, https://w3c.github.io/did-core/