urban d63a4904f9 trxbot 10 месяцев назад
..
src d63a4904f9 trxbot 10 месяцев назад
test d63a4904f9 trxbot 10 месяцев назад
.coveralls.yml d63a4904f9 trxbot 10 месяцев назад
.gitignore d63a4904f9 trxbot 10 месяцев назад
.travis.yml d63a4904f9 trxbot 10 месяцев назад
LICENSE d63a4904f9 trxbot 10 месяцев назад
README.md d63a4904f9 trxbot 10 месяцев назад
composer.json d63a4904f9 trxbot 10 месяцев назад
composer.lock d63a4904f9 trxbot 10 месяцев назад
phpunit.xml.dist d63a4904f9 trxbot 10 месяцев назад

README.md

php-secp256k1 Build Status Coverage Status

$ composer require kornrunner/secp256k1

Usage

Sign a message:

<?php

require_once 'vendor/autoload.php';

use kornrunner\Secp256k1;
use kornrunner\Serializer\HexSignatureSerializer;

$secp256k1 = new Secp256k1();

// return signature contains r, s and recovery param (v).
// message and privateKey are hex strings
$signature = $secp256k1->sign($message, $privateKey);

// get r
$r = $signature->getR();

// get s
$s = $signature->getS();

// get recovery param
$v = $signature->getRecoveryParam();

// encode to hex
$serializer = new HexSignatureSerializer();
$signatureString = $serializer->serialize($signature);

// or you can call toHex
$signatureString = $signature->toHex();

Verify a message:

<?php

require_once 'vendor/autoload.php';

use kornrunner\Secp256k1;

$secp256k1 = new Secp256k1();

// signature was created by sign method
// hash and publicKey are hex strings
$isVerified = $secp256k1->verify($hash, $signature, $publicKey);

License

MIT

Crypto

ETH 0x9c7b7a00972121fb843af7af74526d7eb585b171