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.
1 parent 097b98b commit ea7af4dCopy full SHA for ea7af4d
blake2/src/macros.rs
@@ -8,12 +8,12 @@ macro_rules! blake2_impl {
8
#[doc=$vardoc]
9
pub struct $name {
10
/// Blake2 state vector (8 words total, stored as 2 SIMD vectors).
11
- pub h: [$vec; 2],
+ pub(crate) h: [$vec; 2],
12
/// Total number of bytes processed so far.
13
pub t: u64,
14
#[cfg(feature = "reset")]
15
/// Initial state vector for reset functionality.
16
- pub h0: [$vec; 2],
+ pub(crate) h0: [$vec; 2],
17
}
18
19
impl $name {
0 commit comments