-
Notifications
You must be signed in to change notification settings - Fork 266
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move hashes to a aztec-nr + update docs
- Loading branch information
1 parent
2f871ee
commit 8d1a2d5
Showing
16 changed files
with
95 additions
and
161 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
use dep::std::hash::{pedersen_with_separator, sha256}; | ||
use crate::constants_gen::{ | ||
GENERATOR_INDEX__SIGNATURE_PAYLOAD, | ||
GENERATOR_INDEX__L1_TO_L2_MESSAGE_SECRET, | ||
}; | ||
|
||
fn sha256_to_field<N>(bytes_to_hash: [u8; N]) -> Field { | ||
let sha256_hashed = sha256(bytes_to_hash); | ||
|
||
// Convert it to a field element | ||
let mut v = 1; | ||
let mut high = 0 as Field; | ||
let mut low = 0 as Field; | ||
|
||
for i in 0..16 { | ||
high = high + (sha256_hashed[15 - i] as Field) * v; | ||
low = low + (sha256_hashed[16 + 15 - i] as Field) * v; | ||
v = v * 256; | ||
} | ||
|
||
// Abuse that a % p + b % p = (a + b) % p and that low < p | ||
let hash_in_a_field = low + high * v; | ||
|
||
hash_in_a_field | ||
} | ||
|
||
fn compute_message_hash<N>(args: [Field; N]) -> Field { | ||
// @todo @lherskind We should probably use a separate generator for this, | ||
// to avoid any potential collisions with payloads. | ||
pedersen_with_separator(args, GENERATOR_INDEX__SIGNATURE_PAYLOAD)[0] | ||
} | ||
|
||
fn compute_secret_hash(secret: Field) -> Field { | ||
// TODO(#1205) This is probably not the right index to use | ||
pedersen_with_separator([secret], GENERATOR_INDEX__L1_TO_L2_MESSAGE_SECRET)[0] | ||
} |
This file contains 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 |
---|---|---|
|
@@ -5,6 +5,7 @@ mod auth; | |
mod constants_gen; | ||
mod context; | ||
mod entrypoint; | ||
mod hash; | ||
mod log; | ||
mod messaging; | ||
mod note; | ||
|
This file contains 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 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 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 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 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 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 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
10 changes: 0 additions & 10 deletions
10
yarn-project/noir-contracts/src/contracts/token_contract/src/util.nr
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.