sha3_utils/lib.rs
1//! SHA-3 utilities.
2
3#![cfg_attr(docsrs, feature(doc_cfg))]
4#![cfg_attr(not(any(test, doctest, feature = "std")), no_std)]
5
6mod bytepad;
7mod enc;
8mod util;
9
10pub use bytepad::{bytepad, bytepad_blocks, BytePad};
11pub use enc::{
12 encode_string, left_encode, left_encode_bytes, right_encode, right_encode_bytes, EncodedString,
13 EncodedStringIter, LeftEncode, LeftEncodeBytes, RightEncode, RightEncodeBytes,
14};