readable-hash 0.1.0

Generate human-readable strings from SHA-256 hashes using syllable mapping
Documentation

Rust Lint

readable-hash-rs

Human-readable hashes for Rust.

Usage

Add the crate to your Cargo.toml:

readable-hash = "0.1"

Generate a hash:

use readable_hash::naive_readable_hash;

fn main() {
    let hash = naive_readable_hash("hello");
    println!("{hash}");
}