use crate::sha256;
crate::internal_macros::general_hash_type! {
pub struct Hash([u8; 32]);
const DISPLAY_BACKWARD: bool = true;
}
impl Hash {
pub fn hash_64_many(outputs: &mut [[u8; 32]], inputs: &[[u8; 64]]) {
sha256::HashEngine::sha256d_64(outputs, inputs);
}
pub fn from_engine(e: HashEngine) -> Self {
let sha2 = sha256::Hash::from_engine(e.0);
let sha2d = sha256::Hash::hash(sha2.as_byte_array());
let mut ret = [0; 32];
ret.copy_from_slice(sha2d.as_byte_array());
Self(ret)
}
}
#[derive(Debug, Clone)]
pub struct HashEngine(sha256::HashEngine);
impl HashEngine {
pub const fn new() -> Self {
Self(sha256::HashEngine::new())
}
}
impl Default for HashEngine {
fn default() -> Self {
Self::new()
}
}
impl crate::HashEngine for HashEngine {
type Hash = Hash;
type Bytes = [u8; 32];
const BLOCK_SIZE: usize = 64;
fn input(&mut self, data: &[u8]) {
self.0.input(data);
}
fn n_bytes_hashed(&self) -> u64 {
self.0.n_bytes_hashed()
}
fn finalize(self) -> Self::Hash {
Hash::from_engine(self)
}
}
#[cfg(test)]
mod tests {
#[allow(unused_imports)] use crate::sha256d;
#[test]
#[cfg(feature = "alloc")]
#[cfg(feature = "hex")]
fn test() {
use alloc::string::ToString;
use crate::{sha256, HashEngine};
#[derive(Clone)]
struct Test {
input: &'static str,
output: [u8; 32],
output_str: &'static str,
}
#[rustfmt::skip]
let tests = [
Test {
input: "",
output: [
0x5d, 0xf6, 0xe0, 0xe2, 0x76, 0x13, 0x59, 0xd3,
0x0a, 0x82, 0x75, 0x05, 0x8e, 0x29, 0x9f, 0xcc,
0x03, 0x81, 0x53, 0x45, 0x45, 0xf5, 0x5c, 0xf4,
0x3e, 0x41, 0x98, 0x3f, 0x5d, 0x4c, 0x94, 0x56,
],
output_str: "56944c5d3f98413ef45cf54545538103cc9f298e0575820ad3591376e2e0f65d",
},
];
for test in tests {
let hash = sha256d::Hash::hash(test.input.as_bytes());
assert_eq!(hash, test.output_str.parse::<sha256d::Hash>().expect("parse hex"));
assert_eq!(hash.as_byte_array(), &test.output);
assert_eq!(hash.to_string(), test.output_str);
let mut engine = sha256d::Hash::engine();
for ch in test.input.as_bytes() {
engine.input(&[*ch]);
}
let manual_hash = sha256d::Hash::from_engine(engine);
assert_eq!(hash, manual_hash);
let sha2_hash = sha256::Hash::hash(test.input.as_bytes());
let sha2d_hash = sha2_hash.hash_again();
assert_eq!(hash, sha2d_hash);
assert_eq!(hash.to_byte_array(), test.output);
}
}
#[test]
#[cfg(feature = "alloc")]
#[cfg(feature = "hex")]
fn fmt_roundtrips() {
use alloc::format;
let hash = sha256d::Hash::hash(b"some arbitrary bytes");
let hex = format!("{}", hash);
let roundtrip = hex.parse::<sha256d::Hash>().expect("failed to parse hex");
assert_eq!(roundtrip, hash);
}
#[test]
#[cfg(feature = "serde")]
fn sha256_serde() {
use serde_test::{assert_tokens, Configure, Token};
#[rustfmt::skip]
static HASH_BYTES: [u8; 32] = [
0xef, 0x53, 0x7f, 0x25, 0xc8, 0x95, 0xbf, 0xa7,
0x82, 0x52, 0x65, 0x29, 0xa9, 0xb6, 0x3d, 0x97,
0xaa, 0x63, 0x15, 0x64, 0xd5, 0xd7, 0x89, 0xc2,
0xb7, 0x65, 0x44, 0x8c, 0x86, 0x35, 0xfb, 0x6c,
];
let hash = sha256d::Hash::from_byte_array(HASH_BYTES);
assert_tokens(&hash.compact(), &[Token::BorrowedBytes(&HASH_BYTES[..])]);
assert_tokens(
&hash.readable(),
&[Token::Str("6cfb35868c4465b7c289d7d5641563aa973db6a929655282a7bf95c8257f53ef")],
);
}
#[test]
#[cfg(feature = "alloc")]
fn hash_64_many() {
for count in 0..=32 {
let inputs: alloc::vec::Vec<[u8; 64]> = (0..count)
.map(|i: usize| {
let mut block = [0u8; 64];
for (j, byte) in block.iter_mut().enumerate() {
*byte = (i * 64 + j) as u8;
}
block
})
.collect();
let expected: alloc::vec::Vec<[u8; 32]> =
inputs.iter().map(|inp| sha256d::hash(inp).to_byte_array()).collect();
let mut outputs = alloc::vec![[0u8; 32]; count];
sha256d::Hash::hash_64_many(&mut outputs, &inputs);
assert_eq!(outputs, expected);
}
}
}