├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── src ├── curve.php ├── ecdsa.php ├── ellipticcurve.php ├── math.php ├── point.php ├── privatekey.php ├── publickey.php ├── signature.php └── utils │ ├── binary.php │ ├── der.php │ ├── file.php │ ├── integer.php │ ├── oid.php │ └── pem.php └── tests ├── assert.php ├── message.txt ├── privateKey.pem ├── publicKey.pem ├── signatureDer.txt ├── test.php ├── testCompPubKey.php ├── testCurve.php ├── testEcdsa.php ├── testOpenSSL.php ├── testPrivateKey.php ├── testPublicKey.php ├── testRandom.php ├── testRandomInteger.php ├── testSignature.php └── testSignatureWithRecoveryId.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkbank/ecdsa-php/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkbank/ecdsa-php/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkbank/ecdsa-php/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkbank/ecdsa-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkbank/ecdsa-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkbank/ecdsa-php/HEAD/composer.json -------------------------------------------------------------------------------- /src/curve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkbank/ecdsa-php/HEAD/src/curve.php -------------------------------------------------------------------------------- /src/ecdsa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starkbank/ecdsa-php/HEAD/src/ecdsa.php -------------------------------------------------------------------------------- /src/ellipticcurve.php: -------------------------------------------------------------------------------- 1 |