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 ff3ee0c commit a349c39Copy full SHA for a349c39
blake2/src/lib.rs
@@ -42,6 +42,7 @@ mod simd;
42
mod macros;
43
44
use as_bytes::AsBytes;
45
+pub use blake2x::Blake2bXReader;
46
use consts::{BLAKE2B_IV, BLAKE2S_IV};
47
use simd::{Vector4, u32x4, u64x4};
48
@@ -97,7 +98,7 @@ pub type Blake2b512 = Blake2b<U64>;
97
98
blake2_mac_impl!(Blake2bMac, Blake2bVarCore, U64, "Blake2b MAC function");
99
100
/// Create a blake2xb generator with maximum output
-pub fn blake2xb(seed: &[u8]) -> blake2x::Blake2bXReader {
101
+pub fn blake2xb(seed: &[u8]) -> Blake2bXReader {
102
use digest::ExtendableOutput;
103
blake2x::Blake2Xb::new(Some(seed), None)
104
.unwrap()
0 commit comments