Skip to content

Commit

Permalink
Merge pull request #32 from succinctlabs/john/pub-duplex-challenger-f…
Browse files Browse the repository at this point in the history
…ields

chore: pub duplex challenger fields
  • Loading branch information
tamirhemo authored Mar 6, 2024
2 parents 447c01e + 1cb64f0 commit 7d11ba5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions challenger/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ p3-maybe-rayon = { path = "../maybe-rayon" }
p3-symmetric = { path = "../symmetric" }
tracing = "0.1.37"


[dev-dependencies]
p3-goldilocks = { path = "../goldilocks" }
8 changes: 4 additions & 4 deletions challenger/src/duplex_challenger.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ where
F: Clone,
P: CryptographicPermutation<[F; WIDTH]>,
{
sponge_state: [F; WIDTH],
input_buffer: Vec<F>,
output_buffer: Vec<F>,
permutation: P,
pub sponge_state: [F; WIDTH],
pub input_buffer: Vec<F>,
pub output_buffer: Vec<F>,
pub permutation: P,
}

impl<F, P, const WIDTH: usize> DuplexChallenger<F, P, WIDTH>
Expand Down

0 comments on commit 7d11ba5

Please sign in to comment.