p2panda-rs 0.2.1

All the things a panda needs
Documentation
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: AGPL-3.0-or-later

//! Hash type of p2panda using BLAKE2b algorithm wrapped in [`YAMF`] "Yet-Another-Multi-Format"
//! according to the Bamboo specification.
//!
//! [`YAMF`]: https://github.com/bamboo-rs/yamf-hash
mod error;
mod hash;

pub use error::HashError;
pub use hash::{Blake2BArrayVec, Hash};