-
Notifications
You must be signed in to change notification settings - Fork 93
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
Implementation of Olaf #104
Conversation
e07a49d
to
6f24720
Compare
|
||
# Format comments | ||
comment_width = 100 | ||
wrap_comments = true |
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.
Your git GUI has seemingly pulled recent changes from master into its own commit. I'd expect git handles this fine, likely disapears once rebased onto master, but it's odd behavior that indicates issues with the git GUI.
Did you make any other changes to this PR since 25 April?
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.
Yeah, I messed up...Pushed some changes directly to master instead of this branch and then pulled them.
@@ -22,17 +22,25 @@ curve25519-dalek = { version = "4.1.0", default-features = false, features = [ | |||
"zeroize", | |||
"precomputed-tables", | |||
"legacy_compatibility", | |||
"rand_core", | |||
"serde", |
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.
How is rand_core being added as a feature? rand_core is not an ptional dependency
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.
I am not sure, does it have to be?
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.
rand_core is mandatory. why is this feature being added?
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.
Because without it it does not compile, I don't know why.
Replaced by #107. |
This PR builds upon the previous PR #102 and implements the Olaf protocol. It is part of deliverable 1 of Web3 Foundation's grant w3f/Grants-Program#2250.