-
Notifications
You must be signed in to change notification settings - Fork 3
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
DID JWK Resolution #5
Conversation
final didResolutionResult = DidJwk.resolve(did.uri); | ||
print(jsonEncode(didResolutionResult)); |
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.
We could add this to the test file if you wanna
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.
done! added a few more basic tests
lib/src/dids/did.dart
Outdated
/// signer could use the associated cryptographic private key | ||
/// | ||
/// [Specification Reference](https://www.w3.org/TR/did-core/#verification-methods) | ||
class VerificationMethod { |
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.
Should this be DidVerificationMethod
?
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.
ah yeah good call!
No description provided.