mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-05-01 05:32:19 +00:00
* Use Multihash and MultihashRef instead * Don't use star imports * Split EncodeError and DecodeError * Add DecodeOwnedError * Some cleanup * Remove Hash::name() * Some crate root documentation * Add some more methods * Fix tests * Add PartialEq between Multihash and MultihashRef * Fix the rest of the repo * Rename hash_data() to digest() * Add comment about varint * Remove Error::description impls
rust-multihash
multihash implementation in Rust.
Table of Contents
Install
First add this to your Cargo.toml
[dependencies]
multihash = "*"
Then run cargo build
.
Usage
extern crate multihash;
use multihash::{encode, decode, Hash};
let hash = encode(Hash::SHA2256, b"my hash").unwrap();
let multi = decode(&hash).unwrap();
Supported Hash Types
SHA1
SHA2-256
SHA2-512
SHA3
/Keccak
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 © 2015-2017 Friedel Ziegelmayer