ps-hash 0.1.0-26

Generates 77-character Base32 or 64-character base64url hashes with 128 bits of security.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![allow(clippy::missing_errors_doc)]
pub mod error;
pub use error::*;
pub use ps_hash_core::{
    encoding, hash, Hash, PackedInt, DIGEST_SIZE, HASH_SIZE_BASE64, HASH_SIZE_BIN,
    HASH_SIZE_COMPACT, HASH_SIZE_CROCKFORD, MIN_RECOVERABLE_BASE64, MIN_RECOVERABLE_BIN,
    MIN_RECOVERABLE_CROCKFORD, PARITY, PARITY_OFFSET, PARITY_SIZE, RS, SIZE_SIZE,
};
pub use ps_hash_macros::hash;

#[cfg(test)]
pub mod tests;