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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file curva-1.1.tar.gz
.
File metadata
- Download URL: curva-1.1.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.24.0 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d92ba53f0e512b3148c3cd3212842f608886d21b6248fafc729607a798b3b97 |
|
MD5 | d7bc973ba5e925e41756476838cd4f22 |
|
BLAKE2b-256 | 378716e56a4c3bab5e745e5404d34dabb1a963af823887a6de2504883e2b224b |
File details
Details for the file curva-1.1-py3-none-any.whl
.
File metadata
- Download URL: curva-1.1-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.24.0 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 775a0d1ed673b6584578c73beedaed0f25d593e28d716c3e3c6ec868a4f4c977 |
|
MD5 | 33d444b486dd2a558385c082f37b86cb |
|
BLAKE2b-256 | 15fa1de514c9852558e3bab4978c3251c786fd22ef64526cc3db08a194eedb15 |