Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Need to update to secp256k1-compat #19

Open
TravisLeeRichardson opened this issue Jun 13, 2023 · 0 comments
Open

Need to update to secp256k1-compat #19

TravisLeeRichardson opened this issue Jun 13, 2023 · 0 comments

Comments

@TravisLeeRichardson
Copy link

In generate.js, the code using just secp256k1 no longer works.

Here is the suggested code to use now:

const { randomBytes } = require('crypto')
const secp2 = require("ethereum-cryptography/secp256k1-compat")
const {toHex} = require("ethereum-cryptography/utils")

// Generate private key
let privKey
do {
privKey = randomBytes(32)
}while (!secp2.privateKeyVerify(privKey))
console.log("Private key:", toHex(privKey))

// Derive public key in a compressed format
let pubKey = secp2.publicKeyCreate(privKey)
console.log("Public key:", toHex(pubKey))

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant