Skip to main content

Pure Python cryptocurrency address generation and cryptographic utilities.

Project description

Python Version License

LibCrypto

A professional library for Cryptography and Cryptocurrencies in Python.

This library provides a comprehensive suite of tools for developers working with cryptocurrencies, focusing on key management and address generation with a clean, high-level API.

Key Features

  • High-Level Wallet API: A simple Wallet class to manage keys and addresses.
  • Multi-Currency Support: Correctly generate addresses for numerous secp256k1-based cryptocurrencies, including:
    • Bitcoin (BTC) - Legacy, SegWit (P2SH & Native)
    • Ethereum (ETH)
    • Tron (TRX)
    • Ripple (XRP)
    • Bitcoin Cash (BCH) - CashAddr format
    • Litecoin (LTC)
    • Dash (DASH)
    • Dogecoin (DOGE)
  • Hierarchical Deterministic (HD) Wallets: Full BIP32 support for generating wallets from a master seed.
  • BIP39 Mnemonic Support: Generate, validate, and derive seeds from mnemonic phrases.
  • Key & Format Conversions: Easily convert between WIF, Hex, and Bytes for private and public keys.
  • Powerful Command-Line Interface: Perform common wallet operations directly from your terminal.

Installation

Install the library using pip:

pip install libcrypto

Install On Debian/Ubuntu

sudo apt-get install build-essential python3-dev
pip3 install libcrypto

Install On Fedora

sudo yum install gcc gmp python-devel
pip3 install libcrypto

Dependencies

The library uses:

  • Python stdlib: hashlib, hmac, os.urandom for hashing and random number generation
  • Pure Python: Custom secp256k1 elliptic curve implementation

Verification

Verify the library works without external crypto dependencies:

python verify_no_deps.py

Quick Start (Library Usage)

from libcrypto import Wallet

key = "Your private key here (hex)"
# Initialize the Wallet with the private key
# Replace "Your private key here (hex)" with your actual private key in hexadecimal format
wallet = Wallet(key)
# Generate P2PKH, P2SH-P2WPKH, P2WPKH addresses for Bitcoin
p2pkh = wallet.get_address(coin="bitcoin", address_type="p2pkh")
p2wsh = wallet.get_address(coin="bitcoin", address_type="p2sh-p2wpkh")
p2wpkh = wallet.get_address(coin="bitcoin", address_type="p2wpkh")
# Generate ethereum Address
ethereum_address = wallet.get_address(coin="ethereum")
# Generate Dash Address
dash = wallet.get_address(coin="dash")
# Generate Dogecoin Address
dogecoin_address = wallet.get_address(coin="dogecoin")
# Generate Tron Address
tron_address = wallet.get_address(coin="tron")
# Generate Ripple Address
ripple_address = wallet.get_address(coin="ripple")
# Generate Litecoin Address
litecoin_address = wallet.get_address(coin="litecoin")
# Generate Litecoin Address with specific address types
litecoin_address_p2pkh = wallet.get_address(coin="litecoin", address_type="p2pkh")
litecoin_address_p2wsh = wallet.get_address(coin="litecoin", address_type="p2sh-p2wpkh")
litecoin_address_p2wpkh = wallet.get_address(coin="litecoin", address_type="p2wpkh")

The library is designed to be straightforward. Here is a basic example of generating addresses from an existing private key.

from libcrypto import Wallet

# Initialize a wallet from a WIF private key
wif_key = "L4ZQks37JHUadEqaj2nGB1eaZFcsRZwZGQ7WVYuQiztzg4pqopU6"  # Example WIF key
wallet = Wallet(wif_key)

# Generate addresses for different coins
eth_address = wallet.get_address('ethereum')
btc_address = wallet.get_address('bitcoin', address_type='p2wpkh') # Native SegWit
bch_address = wallet.get_address('bitcoin_cash')

print(f"Ethereum Address: {eth_address}")
print(f"Bitcoin (SegWit) Address: {btc_address}")
print(f"Bitcoin Cash Address: {bch_address}")

CLI

Quick Start (Command-Line Interface)

# version
libcrypto -v

Package Information:

libcrypto info

Wallet & Address Generation

  • Generate a Wallet: This is the main command for generating new wallets or deriving addresses from existing keys.
libcrypto generate [OPTIONS]

Options:

  • -p, --private-key TEXT: Derive addresses from an existing private key (WIF or Hex format). If omitted, a new random wallet is generated.
  • -c, --coin TEXT: Specify a coin to generate addresses for. This option can be used multiple times. Defaults to bitcoin and ethereum.
  1. Generate a new wallet for Bitcoin and Litecoin:
libcrypto generate -c bitcoin -c litecoin
  1. Generate a wallet from an existing private key:
libcrypto generate -p <your-private-key>
  1. Derive addresses for a specific set of coins from a hex key:
libcrypto generate -p <your-hex-key> -c bitcoin -c ethereum -c dash -c tron

Mnemonic Management

The mnemonic subcommand is used for all BIP39 mnemonic phrase operations. Generate a Mnemonic Phrase

Creates a new, cryptographically secure BIP39 mnemonic phrase.

libcrypto mnemonic generate [OPTIONS]

Options:

  • -w, --words INTEGER: The number of words in the mnemonic. Can be 12, 15, 18, 21, or 24. [Default: 12]

Example:

libcrypto mnemonic generate --words 24

Validate a Mnemonic Phrase

Checks if a given BIP39 mnemonic phrase is valid according to the checksum rules.

libcrypto mnemonic validate "PHRASE"

Arguments:

  • PHRASE: The full mnemonic phrase, enclosed in double quotes. [Required]

Example:

libcrypto mnemonic validate "abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about"

Donate

If you find this library useful, consider supporting its development:

  • Bitcoin (BTC): 1MMDRZAcM6dzmdMUSV8pDdAPDFpwzve9Fc

Contact

For support or inquiries, please contact us at pymmdrza@gmail.com.

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

libcrypto-1.6.0.tar.gz (44.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

libcrypto-1.6.0-py3-none-any.whl (36.7 kB view details)

Uploaded Python 3

File details

Details for the file libcrypto-1.6.0.tar.gz.

File metadata

  • Download URL: libcrypto-1.6.0.tar.gz
  • Upload date:
  • Size: 44.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for libcrypto-1.6.0.tar.gz
Algorithm Hash digest
SHA256 400216d990cb94aa436780b467b213d25ac59876b76d1881630a22204d6fcb5f
MD5 db3926ab9c3a2d376e836ea3e7be026e
BLAKE2b-256 a74a2080d700992f40c451cf23dc5cf034836d97553665dc5c72c44f39b31ea0

See more details on using hashes here.

File details

Details for the file libcrypto-1.6.0-py3-none-any.whl.

File metadata

  • Download URL: libcrypto-1.6.0-py3-none-any.whl
  • Upload date:
  • Size: 36.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for libcrypto-1.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 77fab338b2030fef56a125fda124fd12e2b0e9801b9ceea8bc1196071916184a
MD5 3212d019442d8f12fcf7b43c8b2eeef8
BLAKE2b-256 63663f332150ec7076496c1d05bd85dd3f34036f5b4b011a98687af6f6c66e45

See more details on using hashes here.

Supported by

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