Home > OS >  How to convert ecdsa.PublicKey to an address?
How to convert ecdsa.PublicKey to an address?

Time:11-24

I am relatively new to cryptography, so forgive me if this is a trivial question. Is it possible to convert a ecdsa.PublicKey, to an address (ethereum), or more specifically a common.Address?

CodePudding user response:

Found the answer you can use the crypto.PubkeyToAddress function

  • Related