A lightweight and fast pure python ECDSA library
Project description
## Lightweight and Fast Pure Python ECDSA
### Overview
We try other Python libraries such as [python-ecdsa], [fast-ecdsa] and others less famous ones, but we don't find what suit us. The Fist one is based on pure Python, but it's too slow. The second one mixed Python and C, it's really fast, but we were unable to use it in our current infrastructure that required pure Python code.
[python-ecdsa]: https://github.com/warner/python-ecdsa
[fast-ecdsa]: https://github.com/AntonKueltz/fastecdsa
For this reason, we decide to create something simple, compatible with `OpenSSL` and fast using some eleghant math as Jacobian Coordenates to speed up the ECDSA.
### Curves
We current support `secp256k1`but it's super easy to add more curves to the project.
### Speed
We run the test on a MAC Pro i7 2017. We run the each library 100 times and get the average time dispaly bellow:
| Library | sign | verify |
| ---------------- |:-------------:| -------:|
| [python-ecdsa] | 121.3ms | 65.1ms |
| [fast-ecdsa] | 0.1ms | 0.2ms |
| ellipctic-curve | 4.1ms | 8.2ms |
So pure Python can not compete with libraries with C, but it's `6x faster` to verify and `23x faster` to sign then other pure python libraries.
```python
# Generate Keys
privateKey = PrivateKey()
publicKey = privateKey.publicKey()
message = "My test message"
# Generate Signature
signature = Ecsda.sign(message, privateKey)
# Verify if signature is valid
print Ecsda.verify(message, signature, publicKey)
```
### OpenSSl
This library is compatible with OpenSSL, so you can use it to generate keys:
```
openssl ecparam -name secp256k1 -genkey -out privateKey.pem
openssl ec -in privateKey.pem -pubout -out publicKey.pem
```
Create a message.txt file and sign it:
```
openssl dgst -sha256 -sign privateKey.pem -out signature.binary message.txt
```
It's time to verify:
```python
publicKeyPem = open("publicKey.pem").read()
signatureBin = open("signature.binary").read()
message = open("message.txt").read()
publicKey = PublicKey.fromPem(publicKeyPem)
signature = Signature.fromDer(signatureBin)
print Ecdsa.verify(message, signature, publicKey)
```
### Overview
We try other Python libraries such as [python-ecdsa], [fast-ecdsa] and others less famous ones, but we don't find what suit us. The Fist one is based on pure Python, but it's too slow. The second one mixed Python and C, it's really fast, but we were unable to use it in our current infrastructure that required pure Python code.
[python-ecdsa]: https://github.com/warner/python-ecdsa
[fast-ecdsa]: https://github.com/AntonKueltz/fastecdsa
For this reason, we decide to create something simple, compatible with `OpenSSL` and fast using some eleghant math as Jacobian Coordenates to speed up the ECDSA.
### Curves
We current support `secp256k1`but it's super easy to add more curves to the project.
### Speed
We run the test on a MAC Pro i7 2017. We run the each library 100 times and get the average time dispaly bellow:
| Library | sign | verify |
| ---------------- |:-------------:| -------:|
| [python-ecdsa] | 121.3ms | 65.1ms |
| [fast-ecdsa] | 0.1ms | 0.2ms |
| ellipctic-curve | 4.1ms | 8.2ms |
So pure Python can not compete with libraries with C, but it's `6x faster` to verify and `23x faster` to sign then other pure python libraries.
```python
# Generate Keys
privateKey = PrivateKey()
publicKey = privateKey.publicKey()
message = "My test message"
# Generate Signature
signature = Ecsda.sign(message, privateKey)
# Verify if signature is valid
print Ecsda.verify(message, signature, publicKey)
```
### OpenSSl
This library is compatible with OpenSSL, so you can use it to generate keys:
```
openssl ecparam -name secp256k1 -genkey -out privateKey.pem
openssl ec -in privateKey.pem -pubout -out publicKey.pem
```
Create a message.txt file and sign it:
```
openssl dgst -sha256 -sign privateKey.pem -out signature.binary message.txt
```
It's time to verify:
```python
publicKeyPem = open("publicKey.pem").read()
signatureBin = open("signature.binary").read()
message = open("message.txt").read()
publicKey = PublicKey.fromPem(publicKeyPem)
signature = Signature.fromDer(signatureBin)
print Ecdsa.verify(message, signature, publicKey)
```
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
starkbank-ecdsa-0.1.tar.gz
(7.2 kB
view details)
File details
Details for the file starkbank-ecdsa-0.1.tar.gz
.
File metadata
- Download URL: starkbank-ecdsa-0.1.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/2.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d6de618fe29e907edc53d8ba76638d9e9c8a00f04765d88099ce4252136a2e3e |
|
MD5 | 8f5c30e196004444624238df57286857 |
|
BLAKE2b-256 | b303ca542978c2b36594b17bcb11862a981e967d43677738632035578975d629 |