Skip to main content

Simple library for ECIES with AES and HKDF.

Project description

Curva - ECIES based on AES and HKDF

Repos: http://github.com/origamizyt/curva

Simple library for Elliptic-Curve Integrated Encryption Scheme with Rijndael and Hmac-based Key Deriviation Function.

Replacement for blowcurve since blowfish is deprecated now.

Installation

This module uses ecdsa and PyCryptodome module as backend. No DLLs are needed.

This module is avaiable on PyPI:

$ pip install curva

Or you can download the source .tar.gz and execute setup.py manually:

$ python setup.py install

Usage

This module exposes interfaces for key agreement, signatures and encryptions.

Use class curva.Curva to access all interfaces:

>>> c1 = Curva() # create instance, generate keys
>>> c2 = Curva()

Use its export / exportHex method to export local public key, and load / loadHex method to load remote public key:

>>> c1.load(c2.export()) # bytes
>>> c2.loadHex(c1.exportHex()) # hex string

After exchanging public keys, a shared secret can now be established:

>>> c1.secret() == c2.secret() # shared secret (bytes)
True

Use the sign / verify method to create signatures and verify them:

>>> data = b'data'
>>> signature = c1.sign(data)
>>> c2.verify(data, signature)
True
>>> c2.verify(b'attack!', signature)
False

Use the encrypt / decrypt method to encrypt / decrypt data:

>>> data = b'data'
>>> encrypted = c1.encrypt(data)
>>> c2.decrypt(encrypted)
b'data'

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

curva-1.1.tar.gz (4.6 kB view hashes)

Uploaded Source

Built Distribution

curva-1.1-py3-none-any.whl (6.3 kB view hashes)

Uploaded Python 3

Supported by

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