-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add language around DID rotation; fix formatting #200
Conversation
[](https://github.com/TBD54566975/did-dht-method/issues/100) | ||
Add guidance for rotating to a new DID after deactivation. | ||
::: | ||
### Rotation |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pertinent bit here
impl/internal/did/did.go
Outdated
@@ -62,6 +62,19 @@ func (d DHT) Suffix() (string, error) { | |||
return "", fmt.Errorf("invalid did:dht prefix: %s", d) | |||
} | |||
|
|||
// IdentityKey returns the ed25519 public key for the DHT identifier |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just a thought but you could link to the spec here in the doc comments https://did-dht.com/#identity-key
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good call out
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #200 +/- ##
==========================================
- Coverage 50.68% 50.49% -0.19%
==========================================
Files 32 32
Lines 2703 2713 +10
==========================================
Hits 1370 1370
- Misses 1194 1204 +10
Partials 139 139 ☔ View full report in Codecov by Sentry. |
Fix #100