1a2d2cd23a
Generates Ed25519 SSH keys encoded as 24 BIP39 words for offline backup. Keys can be fully recovered from the mnemonic alone.
7 lines
223 B
Bash
Executable File
7 lines
223 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# One-time setup: creates a venv and installs dependencies
|
|
set -e
|
|
python3 -m venv .venv
|
|
.venv/bin/pip install -q -r requirements.txt
|
|
echo "Setup complete. Run with: .venv/bin/python keygen.py <command>"
|