summaryrefslogtreecommitdiff
path: root/test_vectors
diff options
context:
space:
mode:
authorJack O'Connor <oconnor663@gmail.com>2021-03-28 20:01:18 -0400
committerJack O'Connor <oconnor663@gmail.com>2021-03-28 20:04:51 -0400
commit4b7babbe99c04bd573aad49db24484d07c574ae9 (patch)
tree33d49e5b86d6754514f9bdb394fae33e73f473ac /test_vectors
parentdab97de401ea6734bfaca64d256bb6cfadf3cbe0 (diff)
more cleaup of undocumented API
Diffstat (limited to 'test_vectors')
-rw-r--r--test_vectors/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/test_vectors/src/lib.rs b/test_vectors/src/lib.rs
index 129bd16..ec769d1 100644
--- a/test_vectors/src/lib.rs
+++ b/test_vectors/src/lib.rs
@@ -1,9 +1,9 @@
-use blake3::{BLOCK_LEN, CHUNK_LEN};
+use blake3::guts::{BLOCK_LEN, CHUNK_LEN};
use serde::{Deserialize, Serialize};
// A non-multiple of 4 is important, since one possible bug is to fail to emit
// partial words.
-pub const OUTPUT_LEN: usize = 2 * blake3::BLOCK_LEN + 3;
+pub const OUTPUT_LEN: usize = 2 * BLOCK_LEN + 3;
pub const TEST_CASES: &[usize] = &[
0,