https://github.com/massmux/bip39gen
Generate bip39 mnemonic by mic noise
https://github.com/massmux/bip39gen
bip39 bitcoin mnemonic passphrase seed wallet
Last synced: about 2 months ago
JSON representation
Generate bip39 mnemonic by mic noise
- Host: GitHub
- URL: https://github.com/massmux/bip39gen
- Owner: massmux
- License: mit
- Created: 2020-04-27T12:30:16.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-06T04:31:46.000Z (almost 4 years ago)
- Last Synced: 2025-02-13T09:24:24.275Z (4 months ago)
- Topics: bip39, bitcoin, mnemonic, passphrase, seed, wallet
- Language: Python
- Homepage:
- Size: 61.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bip39gen
Generate bip39 mnemonic by microphone noise randomness# This project has been improved and replaced by PAPERGEN PROJECT https://github.com/massmux/Papergen
you can generate a 24words bip39 sequence from entropy coming from the computer's microphone (usage without the -e parameter) or by providing your own entropy source (with -e parameter). The source of entropy gets hashed a number of rounds with a true random salt.
the command is totally offline and must be run on a clean computer without any connection to the internet. It is suggested for example to run on a Tails OS (or similar Linux flavor OS) with internet disconnected and immediately save produced bip39 mnemonic on a sheet of paper. Beware also that no external source is watching at the procedure (a camera for example).
## Requirements
```
pip3 install -r requirements.txt
```## Syntax
```
without params, creates mnemonic by gathering mic audio noise as a source of entropy. Here the command syntax:usage: bip39gen.py [-h] [-e ENTROPY]
optional arguments:
-h, --help show this help message and exit
-e ENTROPY, --entropy ENTROPY
An optional random string in case you prefer providing your own entropy```
example, generate 24 words bip39 mnemonic with entropy from microphone audio recording.
```
./bip39gen.py
```
example, generate 24 words bip39 mnemonic with a provided string as entropy.```
./bip39gen.py -e 12345678
```
## More infosPlease refer to resources published on the website https://www.massmux.com for more infos.