-
Notifications
You must be signed in to change notification settings - Fork 27
Further pyclient types and refactoring #127
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
87f9b41
to
1099076
Compare
hash_ciphers: str, | ||
hash_proof: str, | ||
hash_inputs: str) -> int: | ||
def _sign( |
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.
This needs to be moved to signing.py
which should contain all the algorithms of the signature scheme we use. Namely, Sign(sk, msg)
(returns sigma
), Verify(vk, sigma, msg)
(return 0/1), KeyGen(\secparam)
(returns sk, vk
).
Thus, the signature of the function _sign
above needs to be modified (cc: @rrtoledo as this is related to the thread:#122 (comment))
1099076
to
51a2b7f
Compare
51a2b7f
to
feb86d2
Compare
Fixing non-malleability vulnerability (depends on #127)
Further pyclient types and refactoring
Fixing non-malleability vulnerability (depends on #127)
Preparation for exposing zeth functionality as CLI tools.
The cli tools are not complete, but this is a good place to merge, to avoid branches diverging too much.