5 releases
| 0.1.4 | Oct 24, 2024 |
|---|---|
| 0.1.3 | Jun 26, 2024 |
| 0.1.2 | Feb 23, 2024 |
| 0.1.1 | Oct 30, 2023 |
| 0.1.0 | Jun 6, 2023 |
#258 in Cryptography
17,708 downloads per month
Used in 178 crates
(37 directly)
28KB
441 lines
A batteries-included code table of multihashes.
Whilst the multihash crate itself only defines the data structure, this crate defines a codetable via multihash_derive for several hashers.
Although convenient, depending on this crate will increase the dependency footprint of your project.
It is only recommended as a getting-started-quickly solution.
For production, you should either define your own codetable or rely only on the multihash crate itself.
rust-multihash
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
SHA1SHA2-256SHA2-512SHA3/KeccakBlake2b-256/Blake2b-512/Blake2s-128/Blake2s-256Blake3Strobe
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
Dependencies
~2.6–4.5MB
~94K SLoC