37 releases

0.19.1 Sep 7, 2023
0.19.0 Jun 6, 2023
0.18.1 Apr 14, 2023
0.18.0 Dec 6, 2022
0.1.0 Dec 28, 2015

#22 in Encoding

Download history 93687/week @ 2023-11-21 99684/week @ 2023-11-28 131299/week @ 2023-12-05 122967/week @ 2023-12-12 100135/week @ 2023-12-19 53508/week @ 2023-12-26 100431/week @ 2024-01-02 122117/week @ 2024-01-09 144295/week @ 2024-01-16 134794/week @ 2024-01-23 139822/week @ 2024-01-30 149757/week @ 2024-02-06 150606/week @ 2024-02-13 162500/week @ 2024-02-20 153620/week @ 2024-02-27 113906/week @ 2024-03-05

614,508 downloads per month
Used in 933 crates (124 directly)

MIT license

34KB
602 lines

rust-multihash

Build Status Crates.io License Documentation Dependency Status Coverage Status

multihash implementation in Rust.

Table of Contents

Install

First add this to your Cargo.toml

[dependencies]
multihash = "*"

Then run cargo build.

MSRV

The minimum supported Rust version for this library is 1.64.0. This is only guaranteed without additional features activated.

Usage

The multihash crate exposes a basic data structure for encoding and decoding multihash. It does not provide any hashing functionality itself. Multihash uses const-generics to define the internal buffer size. You should set this to the maximum size of the digest you want to support.

use multihash::Multihash;

const SHA2_256: u64 = 0x12;

fn main() {
	let hash = Multihash::<64>::wrap(SHA2_256, b"my digest");
	println!("{:?}", hash);
}

Using a custom code table

You can derive your own application specific code table using the multihash-derive crate. The multihash-codetable provides predefined hasher implementations if you don't want to implement your own.

use multihash_derive::MultihashDigest;

#[derive(Clone, Copy, Debug, Eq, MultihashDigest, PartialEq)]
#[mh(alloc_size = 64)]
pub enum Code {
    #[mh(code = 0x01, hasher = multihash_codetable::Sha2_256)]
    Foo,
    #[mh(code = 0x02, hasher = multihash_codetable::Sha2_512)]
    Bar,
}

fn main() {
    let hash = Code::Foo.digest(b"my hash");
    println!("{:02x?}", hash);
}

Supported Hash Types

  • SHA1
  • SHA2-256
  • SHA2-512
  • SHA3/Keccak
  • Blake2b-256/Blake2b-512/Blake2s-128/Blake2s-256
  • Blake3
  • Strobe

Maintainers

Captain: @dignifiedquire.

Contribute

Contributions welcome. Please check out the issues.

Check out our contributing document for more information on how we work, and about contributing in general. Please be aware that all interactions related to multiformats are subject to the IPFS Code of Conduct.

Small note: If editing the README, please conform to the standard-readme specification.

License

MIT

Dependencies

~0.3–1.3MB
~24K SLoC