openethereum/src/sha3.rs

47 lines
1.1 KiB
Rust
Raw Normal View History

2015-12-04 13:12:11 +01:00
//! Wrapper around tiny-keccak crate.
2015-11-27 17:54:33 +01:00
use std::mem::uninitialized;
2015-12-01 01:35:32 +01:00
use tiny_keccak::Keccak;
2015-11-27 17:54:33 +01:00
use bytes::BytesConvertable;
2015-11-27 20:10:31 +01:00
use hash::{FixedHash, H256};
2015-11-27 17:54:33 +01:00
2015-12-04 13:12:11 +01:00
/// Types implementing this trait are sha3able.
///
/// ```
/// extern crate ethcore_util as util;
/// use std::str::FromStr;
/// use util::sha3::*;
/// use util::hash::*;
///
/// fn main() {
/// assert_eq!([0u8; 0].sha3(), H256::from_str("c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470").unwrap());
/// }
/// ```
2015-11-28 00:14:40 +01:00
pub trait Hashable {
2015-11-27 17:54:33 +01:00
fn sha3(&self) -> H256;
}
impl<T> Hashable for T where T: BytesConvertable {
fn sha3(&self) -> H256 {
unsafe {
2015-12-01 01:35:32 +01:00
let mut keccak = Keccak::new_keccak256();
keccak.update(self.bytes());
2015-11-27 17:54:33 +01:00
let mut ret: H256 = uninitialized();
2015-12-01 01:35:32 +01:00
keccak.finalize(ret.mut_bytes());
2015-11-27 17:54:33 +01:00
ret
}
}
}
#[test]
fn sha3_empty() {
use std::str::FromStr;
assert_eq!([0u8; 0].sha3(), H256::from_str("c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470").unwrap());
2015-11-27 17:54:33 +01:00
}
#[test]
fn sha3_as() {
use std::str::FromStr;
assert_eq!([0x41u8; 32].sha3(), H256::from_str("59cad5948673622c1d64e2322488bf01619f7ff45789741b15a9f782ce9290a8").unwrap());
2015-11-27 17:54:33 +01:00
}