Skip to content

Commit

Permalink
feat: make challenger fields pub (Plonky3#294)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtguibas authored Mar 28, 2024
1 parent 7b5b8a6 commit 4b8a54f
Showing 1 changed file with 4 additions and 4 deletions.
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 4b8a54f

Please sign in to comment.