Skip to content

v1.0.0

Latest
Compare
Choose a tag to compare
@bip39org bip39org released this 16 Aug 14:19
· 4 commits to main since this release
v1.0.0
1eaa5fb

GitHub Release)

Generate a secure BIP39 Mnemonic phrases from the combination of ID and Password

Installing CLI tool

Simple one line install for linux

wget -qO- https://github.com/bip39org/bip39-org/releases/download/v1.0.0/bip39-cli-1.0.0-linux64.tar.gz | tar xvz && \
sudo mv bip39-cli /usr/local/bin

Check with the following command

bip39-cli --help

SHA256SUMS

33b7d1e29b00e22ba7a6a136fa5d65ad52c62ae1f002e1dc9515247f00087387  bip39-cli-1.0.0-darwin64.tar.gz
6cd27fc067553b3cb9fc8780cbcada1bb900a5efe0dff7c837822957c3393b63  bip39-cli-1.0.0-linux64.tar.gz
9e114fb74f6d9b65d5479b4d46d1b6f24145ebde37820b22b0c375f6242c4157  bip39-cli-1.0.0-win64.zip
f056d0af034945334295fd540172e50786542f0ccdc8a3390219657b8ec9e19e  bip39-org-1.0.0-src.zip
f64f0b8c72118ce5ac10d6a5338403706062b8dd671141d2ae5cd9bf8aea5acd  bip39-org.html
129b03505824879b8a4429576e3de6951c8599644c1afcaae80840f79237695a  bip39-standalone.html
29a70783d588b1ad868d414f97ea5bff5f7073458e86d7c93f50af3afc1f8768  bip39org.asc
9f59638760b208c0560b999aa48d723bf97c7ee6f2c70708429de35c3837d750  iancoleman.asc
f64f0b8c72118ce5ac10d6a5338403706062b8dd671141d2ae5cd9bf8aea5acd  index.html
425a1876ea2775127fcb01c73d77c2a7e821445f1239d630b1ed158f4bbe7e68  signature.txt.asc

How to verify

First, import our PGP key used for release process if you haven't

wget -qO- https://github.com/bip39org/bip39-org/releases/download/v1.0.0/bip39org.asc | gpg --import

Then, download the release binaries with the signed file and verify those

wget https://github.com/bip39org/bip39-org/releases/download/v1.0.0/index.html && \
wget https://github.com/bip39org/bip39-org/releases/download/v1.0.0/bip39-cli-1.0.0-darwin64.tar.gz && \
wget https://github.com/bip39org/bip39-org/releases/download/v1.0.0/bip39-cli-1.0.0-linux64.tar.gz && \
wget https://github.com/bip39org/bip39-org/releases/download/v1.0.0/bip39-cli-1.0.0-win64.zip && \
wget https://github.com/bip39org/bip39-org/releases/download/v1.0.0/SHA256SUMS.asc

# Verify the SHA256SUMS file first
gpg --verify SHA256SUMS.asc

# Verify binary files
sha256sum --ignore-missing --check SHA256SUMS.asc