去中心化分散式身份識(DIDs)是一種數位標識符。
目標是在Web3時代提供使用者自行管理數位身分,使資料的掌控權回歸使用者,使用者可以完全掌控自己的訊息,並且得到身分資料等敏感訊息的隱私保護效果。
DID是去中心化公共金鑰基礎設施(Decentralized Public Key Infrastructure, DPKI)的重要組件;SSL/TLS是PKI常使用的加密機制,在未來DID會有相同的影響力。
{
"@context": "https://example.org/method/v1",
"id": "did:example:...",
"publicKey": [{
"id": "did:example:...",
"type": "RsaVerificationKey2018",
"controller": "did:example:...",
"publicKeyPem": "..."
}],
"authentication": ["did:example:...",],
"service": [{
"id": "did:example:...",
"type": "AgentService",
"serviceEndpoint": "https://..."
}]
}