-
Notifications
You must be signed in to change notification settings - Fork 52
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
Demo for Signature verification #240
Comments
9 tasks
Hey team! Please add your planning poker estimate with Zenhub @conradoplg @dconnolly @natalieesk |
@conradoplg @natalieesk did we do this? |
We didn't, I think we decided it was not important. We might still do it but it doesn't seem a priority... |
that's fine, we can close |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Motivation
We want to simulate a simple execution of FROST to show potential FROST implementers how to use the FROST library.
Scope
Build a simple CLI that takes in a message, a signature for the message and a verification key and returns whether the message signature is valid.
Specification
The CLI will use the following input values:
msg
, that was signed(R,z)
, generated in Demo for Signature generation: Coordinator CLI frost-zcash-demo#48 , andPK
to run
prime_order_verify
, to check if the signature is valid.The CLI will output
True
if the signature is valid orFalse
if the signature is invalid for the given message. We may optionally wish to ouput a more user friendly message to the terminal in each case.The text was updated successfully, but these errors were encountered: