gost-crypto 0.3.0

GOST 28147-89 block cipher and GOST R 34.11-94 hash — no_std, RustCrypto compatible
Documentation
1
2
3
4
5
6
#![allow(missing_docs)]

fn main() {
    println!("Gost28147:   {} bytes", std::mem::size_of::<gost_crypto::Gost28147>());
    println!("Gost341194:  {} bytes", std::mem::size_of::<gost_crypto::Gost341194>());
}