Skip to main content

Convert any hash/data into human-friendly memorable phrase (numerous ways)

Project description

Pink Hash

It's like a pink elephant, but a hash

Convert hashes to mnemonic phrases.

Hashes are great for many machine-specific purposes, but if you give a hash to a person (e.g., display it on a console), you're doing something wrong. Humans struggle with remembering, comparing, or typing hashes accurately. For most people, 8f776debaf8b5031643aa463ba5bf0dc and 8f776debaf8b5013643aa463ba5bf0dc look essentially the same.

However, humans aren’t entirely useless — they can remember vivid phrases quite well. If you tell someone not to think about a pink elephant (or a white monkey), and then Margot Robbie calls to ask them out on a date, even after spending the entire evening and night with her, they’ll still be thinking about the pink elephant.

If a hash is converted into words, people will remember it much better:

  • alter print drive // bip39 with en option by default, but we have fr, es, pt, it, ko, cz, zh-hant and zh-hans as well
  • WELL LANE HELD // rfc1751
  • configurational candidate // eng1
  • Uniform X-ray November // nato

Installation

recommended way (you may want to apt install pipx for this):

pipx install pinkhash

or older way:

pip install pinkhash

CLI Usage

# get pink hash for stdin, default mode with bip39/en
$ echo "Hello world!" | pink 
alter print drive

# or in French...
$ echo "Hello world!" | pink  -o fr
agacer offrir déposer

# Nato alphabet, 5 words
$ echo "Hello world!" | pink  -l nato -w 5
Lima Quebec Whiskey Xray Sierra

# eng1 always returns 2 words, no matter how many we ask
$ echo "Hello world!" | pink  -l eng1 -w 42
peripatetic viola

How to get pinkhash for files:

# pink can hash many files
$ pink *txt
cookies.txt: pelican number item
DNS.txt: shadow expire inhale
log.txt: absurd now caution

Python usage

Get pinkhash for a str with all default settings (Bip39 language as default).

from pinkhash import PinkHash
pink = PinkHash()
print(pink.convert('Hello world!'))
from pinkhash import PinkHash
import sys

pink = PinkHash(language_name='nato', nwords=3)
data = sys.stdin.buffer.read()
r = pink.convert(data)
print(r)

Languages

Each method to convert hash into words in Pinkhash is called an language. For example, nato is one language and rfc1751 is another language. Do not confuse this with a national language. Pinkhash now has built-in eng1 language (which produces adjective+noun pair from large set of english words) but in future there could be another english language, e.g. one which uses only simple popular words, or one which builds longer phrases or one which produces poems or haiku.

Usually (but not always) language can produce hashes of specified (-w) number of words, but eng1 never produces more then 2 words. Also pinkhash will not produce more words then needed to cover only lower 64bits of sha1 hash of input.

BIP-39 language (based on BIP-0039) has 10 options (wordlists), choose it with -o. See all options with -h/--help.

Disclaimer

While pinkhash uses RFC1751 and BIP-0039, it's not strictly following it! Pinkhash has it's own algorithms and just uses wordlists from these standards. Do not use pinkhash where you need strict standard compliance.

Mnemonical pink hashes are NOT cryptographically strong.

Contributions

Contributions are welcome! Write me to yaroslaff / gmail.com to discuss or make a ticket and/or PR.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pinkhash-0.0.4.tar.gz (324.3 kB view details)

Uploaded Source

Built Distribution

pinkhash-0.0.4-py3-none-any.whl (324.7 kB view details)

Uploaded Python 3

File details

Details for the file pinkhash-0.0.4.tar.gz.

File metadata

  • Download URL: pinkhash-0.0.4.tar.gz
  • Upload date:
  • Size: 324.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.27.0

File hashes

Hashes for pinkhash-0.0.4.tar.gz
Algorithm Hash digest
SHA256 f0240da9dac00232df84e0d4d6102742d624665cf02751b24cc2bd9998ecfe00
MD5 0bd98ee4b04a2f27664c7e15321fe332
BLAKE2b-256 774cb5a2f2ca120c0ea00c74a384b3caa2686c7bd5206fbf02e9053960c30713

See more details on using hashes here.

File details

Details for the file pinkhash-0.0.4-py3-none-any.whl.

File metadata

  • Download URL: pinkhash-0.0.4-py3-none-any.whl
  • Upload date:
  • Size: 324.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.27.0

File hashes

Hashes for pinkhash-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 75244c956c4d6debe72403855d16d8df283ceeed332f00fac2a13fa41e827784
MD5 50b847f26fe47c37522c6c58561eb602
BLAKE2b-256 6d4cfcd0a90bcdb18cf00b6f94b16e297b1b2f59521ab199b2e031c09041d702

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page