Skip to content

Commit 7eb56df

Browse files
committed
visibility
1 parent 8430152 commit 7eb56df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/keccak256.nr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ global LIMBS_PER_BLOCK: u32 = BLOCK_SIZE_IN_BYTES / WORD_SIZE;
99
global NUM_KECCAK_LANES: u32 = 25;
1010

1111
#[no_predicates]
12-
pub(crate) fn keccak256<let N: u32>(input: [u8; N], message_size: u32) -> [u8; 32] {
12+
pub fn keccak256<let N: u32>(input: [u8; N], message_size: u32) -> [u8; 32] {
1313
assert(N >= message_size);
1414

1515
// Copy input to block bytes. For that we'll need at least input bytes (N)

0 commit comments

Comments
 (0)