]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/OStatus/classes/Magicsig.php
5705ecc1169a3b3abbd1b2a44d70238bc90f7d2a
[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     public $publicKey;
44     public $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', 'text',
76                                    false, 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)
104     {
105         $rsa = new Crypt_RSA();
106         
107         $keypair = $rsa->createKey();
108
109         $rsa->loadKey($keypair['privatekey']);
110
111         $this->privateKey = new Crypt_RSA();
112         $this->privateKey->loadKey($keypair['privatekey']);
113
114         $this->publicKey = new Crypt_RSA();
115         $this->publicKey->loadKey($keypair['publickey']);
116         
117         $this->user_id = $user_id;
118         $this->insert();
119     }
120
121
122     public function toString($full_pair = true)
123     {
124         $mod = base64_url_encode($this->publicKey->modulus->toBytes());
125         $exp = base64_url_encode($this->publicKey->exponent->toBytes());
126         $private_exp = '';
127         if ($full_pair && $this->privateKey->exponent->toBytes()) {
128             $private_exp = '.' . base64_url_encode($this->privateKey->exponent->toBytes());
129         }
130
131         return 'RSA.' . $mod . '.' . $exp . $private_exp; 
132     }
133     
134     public static function fromString($text)
135     {
136         $magic_sig = new Magicsig();
137         
138         // remove whitespace
139         $text = preg_replace('/\s+/', '', $text);
140
141         // parse components
142         if (!preg_match('/RSA\.([^\.]+)\.([^\.]+)(.([^\.]+))?/', $text, $matches)) {
143             return false;
144         }
145         
146         $mod = $matches[1];
147         $exp = $matches[2];
148         if (!empty($matches[4])) {
149             $private_exp = $matches[4];
150         } else {
151             $private_exp = false;
152         }
153
154         $magic_sig->loadKey($mod, $exp, 'public');
155         if ($private_exp) {
156             $magic_sig->loadKey($mod, $private_exp, 'private');
157         }
158
159         return $magic_sig;
160     }
161
162     public function loadKey($mod, $exp, $type = 'public')
163     {
164         common_log(LOG_DEBUG, "Adding ".$type." key: (".$mod .', '. $exp .")");
165
166         $rsa = new Crypt_RSA();
167         $rsa->signatureMode = CRYPT_RSA_SIGNATURE_PKCS1;
168         $rsa->setHash('sha256');
169         $rsa->modulus = new Math_BigInteger(base64_url_decode($mod), 256);
170         $rsa->k = strlen($rsa->modulus->toBytes());
171         $rsa->exponent = new Math_BigInteger(base64_url_decode($exp), 256);
172
173         if ($type == 'private') {
174             $this->privateKey = $rsa;
175         } else {
176             $this->publicKey = $rsa;
177         }
178     }
179     
180     public function getName()
181     {
182         return $this->alg;
183     }
184
185     public function getHash()
186     {
187         switch ($this->alg) {
188
189         case 'RSA-SHA256':
190             return 'sha256';
191         }
192
193     }
194     
195     public function sign($bytes)
196     {
197         $sig = $this->privateKey->sign($bytes);
198         return base64_url_encode($sig);
199     }
200
201     public function verify($signed_bytes, $signature)
202     {
203         $signature = base64_url_decode($signature);
204         return $this->publicKey->verify($signed_bytes, $signature);
205     }
206         
207 }
208
209 function base64_url_encode($input)
210 {
211     return strtr(base64_encode($input), '+/', '-_');
212 }
213
214 function base64_url_decode($input)
215 {
216     return base64_decode(strtr($input, '-_', '+/'));
217 }