Skip to content

helium/erlang-multihash

Repository files navigation

build codecov

erlang-multihash

An Erlang wrapper for rust_multihash.

Usage

An example using the blake2b hash:

{ok, Digest} = multihash:digest(<<"hello world">>, blake2b256).

Get the hash used for a given multihash digest:

{ok, blake2b256} = multihash:hash(Digest).