You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
nargo version = 0.35.0
noirc version = 0.35.0+2a0d211b92d002fa75855d4ba27267f8892dd52c (git version hash: 2a0d211b92d002fa75855d4ba27267f8892dd52c, is dirty: false)
The text was updated successfully, but these errors were encountered:
jewelofchaos9
changed the title
std::schnorr::verify_signature_noir ability to sign every messagestd::schnorr::verify_signature_noir ability to verify every message
Oct 3, 2024
# Description
## Problem\*
Resolves#6218
## Summary\*
return false when signature is null
## Additional Context
## Documentation\*
Check one:
- [X] No documentation needed.
- [ ] Documentation included in this PR.
- [ ] **[For Experimental Features]** Documentation to be submitted in a
separate PR.
# PR Checklist\*
- [X] I have tested the changes locally.
- [X] I have formatted the changes with [Prettier](https://prettier.io/)
and/or `cargo fmt` on default settings.
Problem
std::schnorr::verify_signature_noir
returns true, if public key is valid and this check invalid for every message.Expected Behavior
Returned false
Bug
To Reproduce
nargo test
Possible fix
else {return false;}
after checkEnvironment
The text was updated successfully, but these errors were encountered: