]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/OStatus/classes/Magicsig.php
d1d6a6d4529d81de5229f1d3cfe13df4f12ea3e4
[quix0rs-gnu-social.git] / plugins / OStatus / classes / Magicsig.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2010, StatusNet, Inc.
5  *
6  * A sample module to show best practices for StatusNet plugins
7  *
8  * PHP version 5
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU Affero General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Affero General Public License for more details.
19  *
20  * You should have received a copy of the GNU Affero General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  *
23  * @package   StatusNet
24  * @author    James Walker <james@status.net>
25  * @copyright 2010 StatusNet, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
27  * @link      http://status.net/
28  */
29
30 require_once 'Crypt/RSA.php';
31
32 class Magicsig extends Memcached_DataObject
33 {
34
35     const PUBLICKEYREL = 'magic-public-key';
36     
37     public $__table = 'magicsig';
38
39     public $user_id;
40     public $keypair;
41     public $alg;
42     
43     private $publicKey;
44     private $privateKey;
45     
46     public function __construct($alg = 'RSA-SHA256')
47     {
48         $this->alg = $alg;
49     }
50     
51     public /*static*/ function staticGet($k, $v=null)
52     {
53         $obj =  parent::staticGet(__CLASS__, $k, $v);
54         if (!empty($obj)) {
55             return Magicsig::fromString($obj->keypair);
56         }
57
58         return $obj;
59     }
60
61
62     function table()
63     {
64         return array(
65             'user_id' => DB_DATAOBJECT_INT,
66             'keypair' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL,
67             'alg'     => DB_DATAOBJECT_STR
68         );
69     }
70
71     static function schemaDef()
72     {
73         return array(new ColumnDef('user_id', 'integer',
74                                    null, false, 'PRI'),
75                      new ColumnDef('keypair', 'varchar',
76                                    255, false),
77                      new ColumnDef('alg', 'varchar',
78                                    64, false));
79     }
80
81
82     function keys()
83     {
84         return array_keys($this->keyTypes());
85     }
86
87     function keyTypes()
88     {
89         return array('user_id' => 'K');
90     }
91
92     function sequenceKey() {
93         return array(false, false, false);
94     }
95
96     function insert()
97     {
98         $this->keypair = $this->toString();
99
100         return parent::insert();
101     }
102
103     public function generate($user_id, $key_length = 512)
104     {
105         // @fixme new key generation
106         $this->user_id = $user_id;
107         $this->insert();
108     }
109
110
111     public function toString($full_pair = true)
112     {
113         $mod = base64_url_encode($this->publicKey->modulus->toBytes());
114         $exp = base64_url_encode($this->publicKey->exponent->toBytes());
115         $private_exp = '';
116         if ($full_pair && $private_key->getExponent()) {
117             $private_exp = '.' . base64_url_encode($this->privateKey->exponent->toBytes());
118         }
119
120         return 'RSA.' . $mod . '.' . $exp . $private_exp; 
121     }
122     
123     public static function fromString($text)
124     {
125         $magic_sig = new Magicsig();
126         
127         // remove whitespace
128         $text = preg_replace('/\s+/', '', $text);
129
130         // parse components
131         if (!preg_match('/RSA\.([^\.]+)\.([^\.]+)(.([^\.]+))?/', $text, $matches)) {
132             return false;
133         }
134         
135         $mod = $matches[1];
136         $exp = $matches[2];
137         if (!empty($matches[4])) {
138             $private_exp = $matches[4];
139         } else {
140             $private_exp = false;
141         }
142
143         $magic_sig->loadKey($mod, $exp, 'public');
144         if ($private_exp) {
145             $magic_sig->loadKey($mod, $private_exp, 'private');
146         }
147
148         return $magic_sig;
149     }
150
151     public function loadKey($mod, $exp, $type = 'public')
152     {
153         common_log(LOG_DEBUG, "Adding ".$type." key: (".$mod .', '. $exp .")");
154
155         $rsa = new Crypt_RSA();
156         $rsa->signatureMode = CRYPT_RSA_SIGNATURE_PKCS1;
157         $rsa->setHash('sha256');
158         $rsa->modulus = new Math_BigInteger(base64_url_decode($mod), 256);
159         $rsa->k = strlen($rsa->modulus->toBytes());
160         $rsa->exponent = new Math_BigInteger(base64_url_decode($exp), 256);
161
162         if ($type == 'private') {
163             $this->privateKey = $rsa;
164         } else {
165             $this->publicKey = $rsa;
166         }
167     }
168     
169     public function getName()
170     {
171         return $this->alg;
172     }
173
174     public function getHash()
175     {
176         switch ($this->alg) {
177
178         case 'RSA-SHA256':
179             return 'magicsig_sha256';
180         }
181
182     }
183     
184     public function sign($bytes)
185     {
186         $sig = $this->privateKey->sign($bytes);
187         return base64_url_encode($sig);
188     }
189
190     public function verify($signed_bytes, $signature)
191     {
192         $signature = base64_url_decode($signature);
193         return $this->publicKey->verify($signed_bytes, $signature);
194     }
195         
196 }
197
198 function base64_url_encode($input)
199 {
200     return strtr(base64_encode($input), '+/', '-_');
201 }
202
203 function base64_url_decode($input)
204 {
205     return base64_decode(strtr($input, '-_', '+/'));
206 }