cleaning up key generation

This commit is contained in:
James Walker 2010-03-12 21:44:18 -05:00
parent 4e44cf906b
commit 135c0c8a7f

View File

@ -40,8 +40,8 @@ class Magicsig extends Memcached_DataObject
public $keypair; public $keypair;
public $alg; public $alg;
private $publicKey; public $publicKey;
private $privateKey; public $privateKey;
public function __construct($alg = 'RSA-SHA256') public function __construct($alg = 'RSA-SHA256')
{ {
@ -100,18 +100,19 @@ class Magicsig extends Memcached_DataObject
return parent::insert(); return parent::insert();
} }
public function generate($user_id, $key_length = 512) public function generate($user_id)
{ {
$rsa = new Crypt_RSA(); $rsa = new Crypt_RSA();
$keypair = $rsa->createKey();
extract($rsa->createKey()); $rsa->loadKey($keypair['privatekey']);
$rsa->loadKey($privatekey); $this->privateKey = new Crypt_RSA();
$this->privateKey->loadKey($keypair['privatekey']);
$this->privateKey = $rsa;
$this->publicKey = new Crypt_RSA(); $this->publicKey = new Crypt_RSA();
$this->publicKey->loadKey($publickey); $this->publicKey->loadKey($keypair['publickey']);
$this->user_id = $user_id; $this->user_id = $user_id;
$this->insert(); $this->insert();
@ -186,7 +187,7 @@ class Magicsig extends Memcached_DataObject
switch ($this->alg) { switch ($this->alg) {
case 'RSA-SHA256': case 'RSA-SHA256':
return 'magicsig_sha256'; return 'sha256';
} }
} }