You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should add examples and tests showing X25519-based DIDs. These are different from DIDs that use Ed25519 and then include a converted X25519 keyAgreement verification method. These DIDs use only X25519 and use the X25519 multibase-multikey header in the DID itself.
The text was updated successfully, but these errors were encountered:
@dlongley I had few questions regarding this issue:
Is this what X25519-based DIDs will look like?
const did = 'did:key:z6LSbysY2xFMRpGMhb7tFTLMpeuPRaqaWM1yECx2AtzE3KCc';
const keyId = `${did}#z6LSbysY2xFMRpGMhb7tFTLMpeuPRaqaWM1yECx2AtzE3KCc`;
Should I be using X25519KeyAgreementKey2020.from as the multibase-multikey deserializer for this?
Are new changes required in the current methods to resolve such DIDs and to get their DID documents, or will the existing methods work for them just as well as for the other DIDs?
@dlongley I had few questions regarding this issue:
Is this what X25519-based DIDs will look like?
const did = 'did:key:z6LSbysY2xFMRpGMhb7tFTLMpeuPRaqaWM1yECx2AtzE3KCc';
const keyId = `${did}#z6LSbysY2xFMRpGMhb7tFTLMpeuPRaqaWM1yECx2AtzE3KCc`;
Yes.
Should I be using X25519KeyAgreementKey2020.from as the multibase-multikey deserializer for this?
We could -- and it should be possible to do that, but we need to make it all work with Multikey and that should be the main way to do it (the other way is legacy).
Are new changes required in the current methods to resolve such DIDs and to get their DID documents, or will the existing methods work for them just as well as for the other DIDs?
I'm not quite sure I understand the question here -- but I think the answer is: You'll have to try it and see what breaks :). I expect there to be a few changes since this type of DID will be keyAgreement only.
We should add examples and tests showing X25519-based DIDs. These are different from DIDs that use Ed25519 and then include a converted X25519
keyAgreement
verification method. These DIDs use only X25519 and use the X25519 multibase-multikey header in the DID itself.The text was updated successfully, but these errors were encountered: