PHP script to create private key & public address

9

1

Does anyone have an PHP code that can do what is done on this website:

https://www.bitaddress.org

Namely create private keys and associated public addresses?

RobKohr

Posted 2011-12-20T23:50:48.820

Reputation: 612

For Python: http://bitcointalk.org/index.php?topic=84238

Stephen Gornick 2012-05-30T00:41:37.183

Answers

2

I enjoy using this package :

Uniform Server Key Generator

And with it running, you can just execute : openssl_pkey_new(); to generate a private/public key set.

Nils Munch

Posted 2011-12-20T23:50:48.820

Reputation: 506