const-crypto 0.3.0

A `#[no_std]` library for `const` sha2/sha3 hashing, ed25519 off-curve point evaluation, and bs58 decoding/encoding with minimal dependencies.
Documentation
1
2
3
4
5
6
#![no_std]
#[doc = include_str!("../README.md")]
pub mod bs58;
pub mod ed25519;
pub use keccak_const as sha3;
pub use sha2_const_stable as sha2;