php-bitpay-client/examples/CreateKeypairs.php
Chris Kleeschulte 7dd352355f EncryptedFilesystemStorage Passwords
- if it is a valid string, then it should now be a valid password for encrypting key files.
2016-06-10 12:17:22 -04:00

37 lines
1.0 KiB
PHP

<?php
/**
* Copyright (c) 2014-2015 BitPay
*/
require __DIR__ . '/../vendor/autoload.php';
/**
* The first argument can either be the path to the key or can be
* some other unique value. This is a basic example, and more advanced
* examples can be used to store keys in the database or other places. In
* this example, however, the keys are not persisted on disk or in a database.
*/
$private = new \Bitpay\PrivateKey('/tmp/private.key');
$public = new \Bitpay\PublicKey('/tmp/public.key');
$sin = new \Bitpay\SinKey('/tmp/sin.key');
// Generate Private Key values
$private->generate();
// Generate Public Key values
$public->setPrivateKey($private);
$public->generate();
// Generate Sin Key values
$sin->setPublicKey($public);
$sin->generate();
printf("Public Key: %s\n", $public);
printf("Private Key: %s\n", $private);
printf("Sin Key: %s\n\n", $sin);
$manager = new \Bitpay\KeyManager(new \Bitpay\Storage\EncryptedFilesystemStorage('dN$8WNaT}j<gD3*q'));
$manager->persist($private);
$manager->persist($public);