There's a C implementation at https://github.com/bitcoin-core/secp256k1 . I need help on code to compute basic operations i.e point addition, double and multiplication in C language.
The inputs / outputs must be in the form of hex. A little performance drop is acceptable.
Bounty at 12345E6kXHSKsrWJ3VLa4QBRF6UWraawU4 .
Thank you.
Maybe take a look at this project, in this class you have everything needed:
https://github.com/JeanLucPons/Kangaroo/blob/master/SECPK1/SECP256k1.h
thank you. But honestly i got zero knowledge on C programming syntax. I already have code in Python but its very slow. I am simply expecting a simple C file in which i can just input "points and operation" and get the result.