Skip to content

Commit

Permalink
fix: revert changes on src/lib.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuthor committed Jul 16, 2024
1 parent d6352d9 commit 1e8aa2d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ pub use kv::KvStore;
/// mitigated by marking n bit of the addresses, allowing to statistically store up to 2^((64-n)/2)
/// keywords, and reducing the number of words that can be used to store associated values to
/// sqrt(2^64 - 2^n).
#[cfg(not(feature = "small"))]
pub const ADDRESS_LENGTH: usize = 16;
#[cfg(feature = "small")]
pub const ADDRESS_LENGTH: usize = 16;

/// Using 32-byte cryptographic keys allow achieving post-quantum resistance if the adequate
Expand Down

0 comments on commit 1e8aa2d

Please sign in to comment.