PyBitmessage/pyelliptic
Tim Bauman 23a9f16933 Making OpenSSL recognize Macs as Unix systems 2013-03-24 23:08:07 -04:00
..
LICENSE added pyelliptic LICENSE and README.md 2013-01-20 20:33:03 -05:00
README.md added pyelliptic LICENSE and README.md 2013-01-20 20:33:03 -05:00
__init__.py Most of the ECC upgrade completed 2013-01-18 17:38:09 -05:00
arithmetic.py Fix to Bitcoin-related functionality in arithmetic.py (thanks to Github user fcicq) 2013-02-26 16:02:38 -05:00
cipher.py some address generation work completed 2013-01-16 11:52:52 -05:00
ecc.py some address generation work completed 2013-01-16 11:52:52 -05:00
hash.py some address generation work completed 2013-01-16 11:52:52 -05:00
openssl.py Making OpenSSL recognize Macs as Unix systems 2013-03-24 23:08:07 -04:00

README.md

PyElliptic

PyElliptic is a high level wrapper for the cryptographic library : OpenSSL. Under the GNU General Public License

Python3 compatible. For GNU/Linux and Windows. Require OpenSSL

Features

Asymmetric cryptography using Elliptic Curve Cryptography (ECC)

  • Key agreement : ECDH
  • Digital signatures : ECDSA
  • Hybrid encryption : ECIES (like RSA)

Symmetric cryptography

  • AES-128 (CBC, OFB, CFB)
  • AES-256 (CBC, OFB, CFB)
  • Blowfish (CFB and CBC)
  • RC4

Other

  • CSPRNG
  • HMAC (using SHA512)
  • PBKDF2 (SHA256 and SHA512)

Example

#!/usr/bin/python

import pyelliptic

# Symmetric encryption
iv = pyelliptic.Cipher.gen_IV('aes-256-cfb')
ctx = pyelliptic.Cipher("secretkey", iv, 1, ciphername='aes-256-cfb')

ciphertext = ctx.update('test1')
ciphertext += ctx.update('test2')
ciphertext += ctx.final()

ctx2 = pyelliptic.Cipher("secretkey", iv, 0, ciphername='aes-256-cfb')
print ctx2.ciphering(ciphertext)

# Asymmetric encryption
alice = pyelliptic.ECC() # default curve: sect283r1
bob = pyelliptic.ECC(curve='sect571r1')

ciphertext = alice.encrypt("Hello Bob", bob.get_pubkey())
print bob.decrypt(ciphertext)

signature = bob.sign("Hello Alice")
# alice's job :
print pyelliptic.ECC(pubkey=bob.get_pubkey()).verify(signature, "Hello Alice")

# ERROR !!!
try:
    key = alice.get_ecdh_key(bob.get_pubkey())
except: print("For ECDH key agreement, the keys must be defined on the same curve !")

alice = pyelliptic.ECC(curve='sect571r1')
print alice.get_ecdh_key(bob.get_pubkey()).encode('hex')
print bob.get_ecdh_key(alice.get_pubkey()).encode('hex')