ebellocchia / bip_utils

Generation of mnemonics, seeds, private/public keys and addresses for different types of cryptocurrencies
MIT License
324 stars 86 forks source link

Signature verification #77

Closed aleixisp closed 2 years ago

aleixisp commented 2 years ago

I see this module is quite completed and provides many capabilities <round a lot of different blockchains, I'm trying to find a module which allows verifying various signatures from different chains, I'm aware in all of them the signature verification is using EDCSA

I would like to know if this module allows for signature verification given the message, Signature and Publickey?

If so, could you point to the appropriate resource within the module?

Many thanks, Aleix

ebellocchia commented 2 years ago

Hi, nope. When I wrote the ecc module, I didn't add methods for signature signing/verification because I thought they were outside the scope of the library. They could be added of course, but for now you can only use the external ecc libraries that are installed as dependencies and do it manually.

Regards, Emanuele

FrankC01 commented 1 year ago

@aleixisp Wondering what you ended up doing for signing/verifications?