elliptic-curve-solidity
elliptic-curve-solidity copied to clipboard
A pure solidity implementation of elliptic curve math, parameterised for curve secp256r1 / prime256v1 / p256.
Bumps [web3-utils](https://github.com/ChainSafe/web3.js) from 1.0.0-beta.34 to 4.2.1. Release notes Sourced from web3-utils's releases. [email protected] Initial alpha release Install with yarn add [email protected] Changelog Sourced from web3-utils's changelog. [4.2.1] Fixed web3-eth-abi Bug...
Hi, do you have EllipticCurve.sol written in new solidity versions?
We needed to modify your repo to support the SECP256K1 curve, so we forked it and did so. The reason we needed to do this was so that we could...
We use this in ENS for verification of P256 signatures on DNSSEC records, and the gas cost of verifying a signature is a significant barrier. We're interested in offering a...
1. As I see [here](https://www.nayuki.io/page/elliptic-curve-point-addition-in-projective-coordinates), `zeroProj` function has to return the `(0, 0, 1)` point instead of `(0, 1, 0)`. 2. Noticed that `P[2]` in the `toProjectivePoint()` function is always...