#[cfg(test)]
use tiny_keccak::{Hasher, Sha3};
pub(crate) type Hash = [u8; 32];
pub(crate) type DbcContentHash = [u8; 32];
mod dbc;
mod dbc_content;
mod dbc_transaction;
mod error;
mod key_manager;
mod mint;
pub use crate::{
dbc::Dbc,
dbc_content::DbcContent,
dbc_transaction::DbcTransaction,
error::{Error, Result},
key_manager::{ChainNode, KeyCache, KeyManager, PublicKey, Signature},
mint::{Mint, MintRequest},
};
#[cfg(test)]
fn sha3_256(input: &[u8]) -> Hash {
let mut sha3 = Sha3::v256();
let mut output = [0; 32];
sha3.update(input);
sha3.finalize(&mut output);
output
}
#[cfg(test)]
mod tests {
use super::*;
use core::num::NonZeroU8;
use quickcheck::{Arbitrary, Gen};
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
pub struct TinyInt(u8);
impl TinyInt {
pub fn coerce<T: From<u8>>(self) -> T {
self.0.into()
}
}
impl std::fmt::Debug for TinyInt {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.0)
}
}
impl Arbitrary for TinyInt {
fn arbitrary(g: &mut Gen) -> Self {
Self(u8::arbitrary(g) % 5)
}
fn shrink(&self) -> Box<dyn Iterator<Item = Self>> {
Box::new((0..(self.0)).into_iter().rev().map(Self))
}
}
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
pub struct NonZeroTinyInt(NonZeroU8);
impl NonZeroTinyInt {
pub fn coerce<T: From<u8>>(self) -> T {
self.0.get().into()
}
}
impl std::fmt::Debug for NonZeroTinyInt {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.0)
}
}
impl Arbitrary for NonZeroTinyInt {
fn arbitrary(g: &mut Gen) -> Self {
let r = NonZeroU8::new(u8::arbitrary(g) % 4 + 1)
.unwrap_or_else(|| panic!("Failed to generate an arbitrary non-zero u8"));
Self(r)
}
fn shrink(&self) -> Box<dyn Iterator<Item = Self>> {
Box::new(
(1..(self.0.get()))
.into_iter()
.rev()
.filter_map(NonZeroU8::new)
.map(Self),
)
}
}
#[derive(Clone, PartialEq, Eq, PartialOrd, Ord)]
pub struct TinyVec<T>(Vec<T>);
impl<T> TinyVec<T> {
pub fn vec(self) -> Vec<T> {
self.0
}
}
impl<T: std::fmt::Debug> std::fmt::Debug for TinyVec<T> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{:?}", self.0)
}
}
impl<T: Arbitrary> Arbitrary for TinyVec<T> {
fn arbitrary(g: &mut Gen) -> Self {
let n = u8::arbitrary(g) % 7;
let mut vec = Vec::new();
for _ in 0..n {
vec.push(T::arbitrary(g));
}
Self(vec)
}
fn shrink(&self) -> Box<dyn Iterator<Item = Self>> {
Box::new(self.0.shrink().map(Self))
}
}
#[test]
fn hash() {
let data = b"hello world";
let expected = b"\
\x64\x4b\xcc\x7e\x56\x43\x73\x04\x09\x99\xaa\xc8\x9e\x76\x22\xf3\
\xca\x71\xfb\xa1\xd9\x72\xfd\x94\xa3\x1c\x3b\xfb\xf2\x4e\x39\x38\
";
assert_eq!(sha3_256(data), *expected);
}
}