-
Notifications
You must be signed in to change notification settings - Fork 11
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
feat:replace md5 checksum #511
Conversation
/// Represents hash of an atsign's public encryption key and the hashing algorithm used | ||
class PublicKeyHash { | ||
String? hash; | ||
PublicKeyHashingAlgo? publicKeyHashingAlgo; |
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.
Why are these nullable?
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.
field should not be nullable. I have removed nullable fields
@murali-shris pubKeyCS is marked as deprecated but pubKeyHash is not being used in any other package that I can find. What's the plan here? I think to prevent confusion we need to remove the deprecation annotation until at_server and at_client_sdk fully support pubKeyHash. I'll make a PR to that effect. (PR here was merged a while back) |
@murali-shris Please see above comment; can you create a ticket to uptake pubKeyHash in (a) atServer (b) at_client_sdk (c) at_c_sdk |
|
- What I did
- How I did it
- How to verify it