aboutsummaryrefslogtreecommitdiff
path: root/b3sum
diff options
context:
space:
mode:
authorJack O'Connor <[email protected]>2025-03-30 17:25:54 -0700
committerGitHub <[email protected]>2025-03-30 17:25:54 -0700
commite1c2ea27fdd717fd924d7b286a125408d7e817f7 (patch)
treec71005f1a46af1a8c9135865469b79ec40fde2e2 /b3sum
parent83a60d9da6a44b719e258926e568c203d3b4dd36 (diff)
add the `hazmat` module and deprecate the undocumented `guts` module
https://github.com/BLAKE3-team/BLAKE3/pull/458
Diffstat (limited to 'b3sum')
-rw-r--r--b3sum/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/b3sum/src/main.rs b/b3sum/src/main.rs
index 4479d4d..69a10c8 100644
--- a/b3sum/src/main.rs
+++ b/b3sum/src/main.rs
@@ -196,7 +196,7 @@ fn write_hex_output(mut output: blake3::OutputReader, args: &Args) -> anyhow::Re
// TODO: This computes each output block twice when the --seek argument isn't a multiple of 64.
// We'll refactor all of this soon anyway, once SIMD optimizations are available for the XOF.
let mut len = args.len();
- let mut block = [0; blake3::guts::BLOCK_LEN];
+ let mut block = [0; blake3::BLOCK_LEN];
while len > 0 {
output.fill(&mut block);
let hex_str = hex::encode(&block[..]);