multihash_derive/lib.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
#![cfg_attr(not(feature = "std"), no_std)]
//! A procedural macro for custom Multihash code tables.
//!
//! This proc macro derives a custom Multihash code table from a list of hashers. It also
//! generates a public type called `Multihash` which corresponds to the specified `alloc_size`.
//!
//! The digests are stack allocated with a fixed size. That size needs to be big enough to hold any
//! of the specified hash digests. This cannot be determined reliably on compile-time, hence it
//! needs to set manually via the `alloc_size` attribute. Also you might want to set it to bigger
//! sizes then necessarily needed for backwards/forward compatibility.
//!
//! If you set `#mh(alloc_size = …)` to a too low value, you will get compiler errors. Please note
//! the the sizes are checked only on a syntactic level and *not* on the type level. This means
//! that digest need to have a size const generic, which is a valid `usize`, for example `32` or
//! `64`.
//!
//! You can disable those compiler errors with setting the `no_alloc_size_errors` attribute. This
//! can be useful if you e.g. have specified type aliases for your hash digests and you are sure
//! you use the correct value for `alloc_size`.
//!
//! When you want to define your own codetable, you should only depend on `multihash-derive`.
//! It re-exports the `multihash` crate for you.
//!
//! # Example
//!
//! ```ignore : `proc-macro-crate` does not work in docs, see https://github.com/bkchr/proc-macro-crate/issues/14
//! use multihash_derive::{Hasher, MultihashDigest};
//!
//! struct FooHasher;
//!
//! impl Hasher for FooHasher {
//! // Implement hasher ...
//! # fn update(&mut self, input: &[u8]) {
//! #
//! # }
//! #
//! # fn finalize(&mut self) -> &[u8] {
//! # &[]
//! # }
//! #
//! # fn reset(&mut self) {
//! #
//! # }
//! }
//!
//! #[derive(Clone, Copy, Debug, Eq, MultihashDigest, PartialEq)]
//! #[mh(alloc_size = 64)]
//! pub enum Code {
//! #[mh(code = 0x01, hasher = FooHasher)]
//! Foo
//! }
//!
//! let hash = Code::Foo.digest(b"hello world!");
//!
//! println!("{:02x?}", hash);
//! ```
mod hasher;
use core::convert::TryFrom;
use core::fmt;
pub use hasher::Hasher;
pub use multihash::Error;
pub use multihash::Multihash;
#[doc(inline)]
pub use multihash_derive_impl::Multihash; // This one is deprecated.
pub use multihash_derive_impl::MultihashDigest;
/// The given code is not supported by this codetable.
#[derive(Debug)]
pub struct UnsupportedCode(pub u64);
impl fmt::Display for UnsupportedCode {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "the code {} is not supported by this codetable", self.0)
}
}
impl core2::error::Error for UnsupportedCode {}
/// Trait that implements hashing.
///
/// Typically, you won't implement this yourself but use the [`MultihashDigest`](multihash_derive_impl::MultihashDigest) custom-derive.
pub trait MultihashDigest<const S: usize>:
TryFrom<u64, Error = UnsupportedCode>
+ Into<u64>
+ Send
+ Sync
+ Unpin
+ Copy
+ Eq
+ fmt::Debug
+ 'static
{
/// Calculate the hash of some input data.
fn digest(&self, input: &[u8]) -> Multihash<S>;
/// Create a multihash from an existing multihash digest.
fn wrap(&self, digest: &[u8]) -> Result<Multihash<S>, Error>;
}