-
Notifications
You must be signed in to change notification settings - Fork 53
Replace KeyPair class with record typedef KeyPair<T,S>
#195
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
Conversation
This is technically breaking right, but not very breaking. I was contemplating if we should group with other breaking changes. But maybe we should just decide that it's not that breaking. |
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.
Let's update the CHANGELOG.md
so that we have entry for this change, ready for the next release.
This is technically breaking, but probably so little breaking that it won't affect anyone.
Created a PR to update |
lib/src/testing/webcrypto/ecdh.dart
Outdated
|
||
_KeyPair({required this.privateKey, required this.publicKey}); | ||
} | ||
typedef KeyPair<S, T> = ({S privateKey, T publicKey}); |
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.
where is this used?
|
||
_KeyPair({required this.privateKey, required this.publicKey}); | ||
} | ||
typedef KeyPair<S, T> = ({S privateKey, T publicKey}); |
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.
where is this used?
Closes #191