bitcoin-sha256 0.1.20

SHA-256 and SHA-512 are novel hash functions computed with eight 32-bit and 64-bit words, respectively. They use different shift amounts and additive constants, but their structures are otherwise virtually identical, differing only in the number of rounds. (from wikipedia)
1
2
3
4
5
6
7
// ---------------- [ File: bitcoin-sha256/src/imports.rs ]
//pub(crate) use ::serde::*;
//pub(crate) use ::serde::{Serialize,Deserialize};
pub(crate) use bitcoin_derive::*;
pub(crate) use bitcoin_u256::*;
pub(crate) use bitcoin_imports::*;
pub(crate) use serde_big_array::BigArray;