Kirin 2bd919e148 commit | 2 years ago | |
---|---|---|
.. | ||
src | 2 years ago | |
.gitattributes | 2 years ago | |
.gitignore | 2 years ago | |
.gitmodules | 2 years ago | |
.scrutinizer.yml | 2 years ago | |
.travis.yml | 2 years ago | |
Makefile | 2 years ago | |
README.md | 2 years ago | |
composer.json | 2 years ago | |
phpunit.full.xml | 2 years ago | |
phpunit.xml | 2 years ago | |
validate_examples.sh | 2 years ago |
This library is a rewrite/update of Matyas Danter's ECC library. All credit goes to him.
For more information on Elliptic Curve Cryptography please read this fine article.
The library supports the following curves:
During ECDSA, a random value k
is required. It is acceptable to use a true RNG to generate this value, but
should the same k
value ever be repeatedly used for a key, an attacker can recover that signing key.
The HMAC random generator can derive a deterministic k value from the message hash and private key, voiding
this concern.
The library uses a non-branching Montgomery ladder for scalar multiplication, as it's constant time and avoids secret dependant branches.
This package is released under the MIT license.
For PHP5.6 compatibility, use the v0.4.x releases.
You can install this library via Composer :
composer require mdanter/ecc
When sending in pull requests, please make sure to run the make
command.
The default target runs all PHPUnit and PHPCS tests. All tests must validate for your contribution to be accepted.
It's also always a good idea to check the results of the Scrutinizer analysis for your pull requests.
Examples: