PyECC Example - Python Elliptic Curve Cryptography

I work with PyECC - this is the only elliptical cryptographic cryptographic module for python that I can find. I was wondering if anyone has an example of using a module? I will try to read the source, but I could not find anything in Stack on python related topic.

Thanks!

+6
source share
4 answers

Figured it out. Thank you for your suggestions. For those who want information on how to implement PyECC, check out the crypto shell I wrote on github.

CryptoWrapper - https://github.com/f47h3r/CryptoWrapper

+5
source

The documentation seems to be bare, so the source is the only place you can use to figure out how to use python bindings. However, it looks like

>>> encrypter = ECC.generate() >>> encrypter.encrypt('your text here') 

Should work for encryption. The same should work for all methods defined in pyecc.py , namely decrypt , sign and verify . Just remember to check the method signatures to see what arguments are needed.

0
source

Check out https://github.com/bwesterb/py-seccure Its a simple Python elliptical curvature curve compatible with the excellent SECCURE command-line utility.

0
source

This library is not written for human use. it sucks !! Change another

-1
source

Source: https://habr.com/ru/post/899170/


All Articles