Expand description
§Zeros
§Project
- License: GNU Lesser General Public License, either version 3, or (at your option) any later version.
- This project follows Semantic Versioning 2.0.0
§Features
This project provides:
- Some hash functions from Keccak.
- Some cryptographic implementations: Chacha, Poly1305, Argon2…
§Notes
- Currently only little-endian systems are supported. We don’t have access or knowledge to test on big-endian systems.
- Internal state stores data on
u64
. So it works best on systems supportingu64
natively. - Accuracy/correctness is highest priority. Speed is second. Currently, it’s slower than well-known implementations, such as OpenSSL.
- Documentation is built with all features. Some of them are optional. If you see components from other crates, you can view source to see what features are required.
Modules§
- argon2Little-endianArgon2 (version
1.3
) - chachaLittle-endianChacha
- I/O
- keccakLittle-endianKeccak
- poly1305Little-endianPoly1305
- prg
std
and little-endian and UnixPseudorandom generator 16.1.2
(July 29th, 2024)
Structs§
- Bytes
- Error
Constants§
- Crate code name
- A slice of hexadecimal strings of all
u8
values - ID of this crate
- Crate name
- No bytes
- Crate release date (year/month/day)
- Tag, which can be used for logging…
- Crate version
Functions§
- Formats a byte slice as a hexadecimal string, in lower-case
- Converts a hexadecimal string into a vector of bytes
Type Aliases§
- IoResult
std
Result for I/O functions - Result type used in this crate