Live data from Hacker News

Ethereum Security Bug Bounty

bounty.ethdev.com

1–6 of 6 posts

Re: Ethereum Security Bug Bounty

#4

> delivering stable protocols and secure software upon genesis block release > Elliptic curve (secp256k1, ECDSA) Isn't secp256k1 and ECDSA prone to implementation errors? Why not use EdDSA instead? :)

Those are Bitcoin's primitives, right? Presumably, they're just doing what everyone else does.

Re: Ethereum Security Bug Bounty

#5
post #4

> delivering stable protocols and secure software upon genesis block release > Elliptic curve (secp256k1, ECDSA) Isn't secp256k1 and ECDSA prone to implementation errors? Why not use EdDSA instead? :)

Those are Bitcoin's primitives, right? Presumably, they're just doing what everyone else does.

Sure, I just thought (based on the genesis block comment) that they were going to make their own. And, well, https://eprint.iacr.org/2014/161.pdf

Using the same primitives as everyone else is probably a conservative choice.

Re: Ethereum Security Bug Bounty

#6

> delivering stable protocols and secure software upon genesis block release > Elliptic curve (secp256k1, ECDSA) Isn't secp256k1 and ECDSA prone to implementation errors? Why not use EdDSA instead? :)

Relevant code if someone wants to audit: https://github.com/ethereum/go-ethereum/blob/4df2e1ef5c20ebd...