mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2026-04-29 15:37:48 +00:00
Python key derivation examples
Generates key from a given input in Ed25519 and Secp256k1 format. On first run, you have to install the necessary Python dependencies:
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
Command-line usage
Key Derivation (Secp256k1)
python key_derivation.py
Ed25519 Key Derivation
python ed25519.py
RFC1751 Key Derivation
python RFC1751.py