Skip to content

Commit 641913b

Browse files
committed
pub(crate) consts
1 parent d664ed9 commit 641913b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

blake2/src/consts.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![allow(clippy::unreadable_literal)]
22

3-
pub(super) static SIGMA: [[usize; 16]; 12] = [
3+
pub(crate) static SIGMA: [[usize; 16]; 12] = [
44
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
55
[14, 10, 4, 8, 9, 15, 13, 6, 1, 12, 0, 2, 11, 7, 5, 3],
66
[11, 8, 12, 0, 5, 2, 15, 13, 10, 14, 3, 6, 7, 1, 9, 4],
@@ -15,7 +15,7 @@ pub(super) static SIGMA: [[usize; 16]; 12] = [
1515
[14, 10, 4, 8, 9, 15, 13, 6, 1, 12, 0, 2, 11, 7, 5, 3],
1616
];
1717

18-
pub(super) static BLAKE2B_IV: [u64; 8] = [
18+
pub(crate) static BLAKE2B_IV: [u64; 8] = [
1919
0x6a09e667f3bcc908,
2020
0xbb67ae8584caa73b,
2121
0x3c6ef372fe94f82b,
@@ -34,7 +34,7 @@ pub const BLAKE2B_SALTBYTES : usize = 16;
3434
pub const BLAKE2B_PERSONALBYTES : usize = 16;
3535
*/
3636

37-
pub(super) static BLAKE2S_IV: [u32; 8] = [
37+
pub(crate) static BLAKE2S_IV: [u32; 8] = [
3838
0x6A09E667, 0xBB67AE85, 0x3C6EF372, 0xA54FF53A, 0x510E527F, 0x9B05688C, 0x1F83D9AB, 0x5BE0CD19,
3939
];
4040

0 commit comments

Comments
 (0)