Skip to content

Commit

Permalink
chore: clarify that verify_signature takes a hashed message (#1365)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench authored May 17, 2023
1 parent 1e958c2 commit cfbc1f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion noir_stdlib/src/ecdsa_secp256k1.nr
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#[foreign(ecdsa_secp256k1)]
fn verify_signature(_public_key_x : [u8; 32], _public_key_y : [u8; 32], _signature: [u8; 64], _message: [u8]) -> Field {}
fn verify_signature(_public_key_x : [u8; 32], _public_key_y : [u8; 32], _signature: [u8; 64], _message_hash: [u8]) -> Field {}

0 comments on commit cfbc1f7

Please sign in to comment.