-
Notifications
You must be signed in to change notification settings - Fork 598
refactor: no assert in is_valid_impl(...)
#8397
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
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -55,7 +55,9 @@ contract EcdsaKAccount { | |
| let public_key = storage.public_key.get_note(); | ||
|
|
||
| // Load auth witness | ||
| let witness: [Field; 64] = get_auth_witness(outer_hash); | ||
| let witness: [Field; 64] = unsafe { | ||
| get_auth_witness(outer_hash) | ||
| }; | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since I was touching the code tackled the "unsafe" warnings here. |
||
| let mut signature: [u8; 64] = [0; 64]; | ||
| for i in 0..64 { | ||
| signature[i] = witness[i] as u8; | ||
|
|
@@ -65,9 +67,6 @@ contract EcdsaKAccount { | |
| // Note that noir expects the hash of the message/challenge as input to the ECDSA verification. | ||
| let outer_hash_bytes: [u8; 32] = outer_hash.to_be_bytes(); | ||
| let hashed_message: [u8; 32] = std::hash::sha256(outer_hash_bytes); | ||
| let verification = std::ecdsa_secp256k1::verify_signature(public_key.x, public_key.y, signature, hashed_message); | ||
| assert(verification == true); | ||
|
|
||
| true | ||
| std::ecdsa_secp256k1::verify_signature(public_key.x, public_key.y, signature, hashed_message) | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,9 +18,7 @@ contract SchnorrAccount { | |
|
|
||
| #[aztec(storage)] | ||
| struct Storage { | ||
| // docs:start:storage | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A lot of unused tags here so cleaned that up. |
||
| signing_public_key: PrivateImmutable<PublicKeyNote>, | ||
| // docs:end:storage | ||
| } | ||
|
|
||
| // Constructs the contract | ||
|
|
@@ -33,10 +31,8 @@ contract SchnorrAccount { | |
| // deploy this (typically MultiCallEntrypoint). I think it's ok here as I feel the outgoing here is not that | ||
| // important. | ||
|
|
||
| // docs:start:initialize | ||
| let mut pub_key_note = PublicKeyNote::new(signing_pub_key_x, signing_pub_key_y, this_keys.npk_m.hash()); | ||
| storage.signing_public_key.initialize(&mut pub_key_note).emit(encode_and_encrypt_note_with_keys(&mut context, this_keys.ovpk_m, this_keys.ivpk_m, this)); | ||
| // docs:end:initialize | ||
| } | ||
|
|
||
| // Note: If you globally change the entrypoint signature don't forget to update account_entrypoint.ts file | ||
|
|
@@ -57,29 +53,27 @@ contract SchnorrAccount { | |
|
|
||
| #[contract_library_method] | ||
| fn is_valid_impl(context: &mut PrivateContext, outer_hash: Field) -> bool { | ||
| // docs:start:entrypoint | ||
| // docs:start:is_valid_impl | ||
| // Load public key from storage | ||
| let storage = Storage::init(context); | ||
| // docs:start:get_note | ||
| let public_key = storage.signing_public_key.get_note(); | ||
| // docs:end:get_note | ||
| // Load auth witness | ||
| let witness: [Field; 64] = get_auth_witness(outer_hash); | ||
| let witness: [Field; 64] = unsafe { | ||
| get_auth_witness(outer_hash) | ||
| }; | ||
| let mut signature: [u8; 64] = [0; 64]; | ||
| for i in 0..64 { | ||
| signature[i] = witness[i] as u8; | ||
| } | ||
|
|
||
| // Verify signature of the payload bytes | ||
| let verification = std::schnorr::verify_signature( | ||
| std::schnorr::verify_signature( | ||
| public_key.x, | ||
| public_key.y, | ||
| signature, | ||
| outer_hash.to_be_bytes::<32>() | ||
| ); | ||
| assert(verification == true); | ||
| // docs:end:entrypoint | ||
| true | ||
| ) | ||
| // docs:end:is_valid_impl | ||
| } | ||
|
|
||
| /** | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
The tag was confusing (it was not pointing to entrypoint) so I renamed it.