#hash #gost #streebog

no-std streebog

Streebog (GOST R 34.11-2012) hash function

13 releases

Uses new Rust 2024

0.11.0-pre.5 Mar 5, 2025
0.11.0-pre.4 Jul 26, 2024
0.11.0-pre.3 Feb 1, 2024
0.10.2 Sep 16, 2022
0.2.2 Nov 21, 2016

#2906 in Cryptography

Download history 441/week @ 2025-01-27 851/week @ 2025-02-03 589/week @ 2025-02-10 599/week @ 2025-02-17 778/week @ 2025-02-24 876/week @ 2025-03-03 907/week @ 2025-03-10 760/week @ 2025-03-17 678/week @ 2025-03-24 635/week @ 2025-03-31 666/week @ 2025-04-07 1367/week @ 2025-04-14 1500/week @ 2025-04-21 922/week @ 2025-04-28 659/week @ 2025-05-05 1641/week @ 2025-05-12

5,257 downloads per month
Used in 13 crates (12 directly)

MIT/Apache

22KB
413 lines

RustCrypto: Streebog

crate Docs Apache2/MIT licensed Rust Version Project Chat Build Status

Pure Rust implementation of the Streebog cryptographic hash function defined in GOST R 34.11-2012.

Examples

use streebog::{Digest, Streebog256, Streebog512};
use hex_literal::hex;

let mut hasher = Streebog256::new();
hasher.update("The quick brown fox jumps over the lazy dog");
let hash256 = hasher.finalize();

assert_eq!(hash256, hex!("3e7dea7f2384b6c5a3d0e24aaa29c05e89ddd762145030ec22c71a6db8b2c1f4"));

// Hex-encode hash using https://docs.rs/base16ct
let hex_hash256 = base16ct::lower::encode_string(&hash256);
assert_eq!(hex_hash256, "3e7dea7f2384b6c5a3d0e24aaa29c05e89ddd762145030ec22c71a6db8b2c1f4");

// Same example for Streebog-512
let mut hasher = Streebog512::new();
hasher.update("The quick brown fox jumps over the lazy dog.");
let hash512 = hasher.finalize();

assert_eq!(hash512, hex!(
    "fe0c42f267d921f940faa72bd9fcf84f9f1bd7e9d055e9816e4c2ace1ec83be8"
    "2d2957cd59b86e123d8f5adee80b3ca08a017599a9fc1a14d940cf87c77df070"
));

Also, see the examples section in the RustCrypto/hashes readme.

License

The crate is licensed under either of:

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~655KB
~17K SLoC

OSZAR »