AntonKueltz / fastecdsa

Python library for fast elliptic curve crypto
https://pypi.python.org/pypi/fastecdsa
The Unlicense
263 stars 76 forks source link

Is it possible for this to be used with Micropython? #83

Closed TGiles1998 closed 1 year ago

TGiles1998 commented 2 years ago

Hi,

Looking to use ECDSA with micropython. Do you think this would be feasible with this library?

Many thanks,

Thomas

AntonKueltz commented 2 years ago

Hi Thomas,

I'm unfamiliar with micropython. A cursory glance indicates it's implemented in C, but I don't know how well it works with C extensions and third party C libraries. You'll have to see if you can install GMP on the host, and if building the project works. It might be easier to clone the repo and try python setup.py install to install rather than using pip, as you might have more luck debugging that way.

TGiles1998 commented 2 years ago

Hi, Many thanks for your reply. I will implement your suggestions and get back to you.

Thomas

AntonKueltz commented 1 year ago

I'm going to close this issue, feel free to reopen it if there are any follow on questions or discussion.