We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
pub(crate)
1 parent d664ed9 commit 641913bCopy full SHA for 641913b
1 file changed
blake2/src/consts.rs
@@ -1,6 +1,6 @@
1
#![allow(clippy::unreadable_literal)]
2
3
-pub(super) static SIGMA: [[usize; 16]; 12] = [
+pub(crate) static SIGMA: [[usize; 16]; 12] = [
4
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
5
[14, 10, 4, 8, 9, 15, 13, 6, 1, 12, 0, 2, 11, 7, 5, 3],
6
[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] = [
15
16
];
17
18
-pub(super) static BLAKE2B_IV: [u64; 8] = [
+pub(crate) static BLAKE2B_IV: [u64; 8] = [
19
0x6a09e667f3bcc908,
20
0xbb67ae8584caa73b,
21
0x3c6ef372fe94f82b,
@@ -34,7 +34,7 @@ pub const BLAKE2B_SALTBYTES : usize = 16;
34
pub const BLAKE2B_PERSONALBYTES : usize = 16;
35
*/
36
37
-pub(super) static BLAKE2S_IV: [u32; 8] = [
+pub(crate) static BLAKE2S_IV: [u32; 8] = [
38
0x6A09E667, 0xBB67AE85, 0x3C6EF372, 0xA54FF53A, 0x510E527F, 0x9B05688C, 0x1F83D9AB, 0x5BE0CD19,
39
40
0 commit comments