3 * @copyright Copyright (C) 2020, Friendica
5 * @license GNU AGPL version 3 or any later version
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 namespace Friendica\Util;
26 use Friendica\Core\Hook;
27 use Friendica\Core\Logger;
28 use Friendica\Core\System;
36 // supported algorithms are 'sha256', 'sha1'
38 * @param string $data data
39 * @param string $key key
40 * @param string $alg algorithm
43 public static function rsaSign($data, $key, $alg = 'sha256')
46 Logger::warning('Empty key parameter', ['callstack' => System::callstack()]);
48 openssl_sign($data, $sig, $key, (($alg == 'sha1') ? OPENSSL_ALGO_SHA1 : $alg));
53 * @param string $data data
54 * @param string $sig signature
55 * @param string $key key
56 * @param string $alg algorithm
59 public static function rsaVerify($data, $sig, $key, $alg = 'sha256')
62 Logger::warning('Empty key parameter', ['callstack' => System::callstack()]);
64 return openssl_verify($data, $sig, $key, (($alg == 'sha1') ? OPENSSL_ALGO_SHA1 : $alg));
68 * @param string $Der der formatted string
69 * @param bool $Private key type optional, default false
72 private static function DerToPem($Der, $Private = false)
75 $Der = base64_encode($Der);
77 $lines = str_split($Der, 65);
78 $body = implode("\n", $lines);
80 $title = $Private ? 'RSA PRIVATE KEY' : 'PUBLIC KEY';
82 $result = "-----BEGIN {$title}-----\n";
83 $result .= $body . "\n";
84 $result .= "-----END {$title}-----\n";
90 * @param string $Der der formatted string
93 private static function DerToRsa($Der)
96 $Der = base64_encode($Der);
98 $lines = str_split($Der, 64);
99 $body = implode("\n", $lines);
101 $title = 'RSA PUBLIC KEY';
103 $result = "-----BEGIN {$title}-----\n";
104 $result .= $body . "\n";
105 $result .= "-----END {$title}-----\n";
111 * @param string $Modulus modulo
112 * @param string $PublicExponent exponent
115 private static function pkcs8Encode($Modulus, $PublicExponent)
117 //Encode key sequence
118 $modulus = new ASNValue(ASNValue::TAG_INTEGER);
119 $modulus->SetIntBuffer($Modulus);
120 $publicExponent = new ASNValue(ASNValue::TAG_INTEGER);
121 $publicExponent->SetIntBuffer($PublicExponent);
122 $keySequenceItems = [$modulus, $publicExponent];
123 $keySequence = new ASNValue(ASNValue::TAG_SEQUENCE);
124 $keySequence->SetSequence($keySequenceItems);
126 $bitStringValue = $keySequence->Encode();
127 $bitStringValue = chr(0x00) . $bitStringValue; //Add unused bits byte
128 $bitString = new ASNValue(ASNValue::TAG_BITSTRING);
129 $bitString->Value = $bitStringValue;
131 $bodyValue = "\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00" . $bitString->Encode();
132 $body = new ASNValue(ASNValue::TAG_SEQUENCE);
133 $body->Value = $bodyValue;
134 //Get DER encoded public key:
135 $PublicDER = $body->Encode();
140 * @param string $Modulus modulo
141 * @param string $PublicExponent exponent
144 private static function pkcs1Encode($Modulus, $PublicExponent)
146 //Encode key sequence
147 $modulus = new ASNValue(ASNValue::TAG_INTEGER);
148 $modulus->SetIntBuffer($Modulus);
149 $publicExponent = new ASNValue(ASNValue::TAG_INTEGER);
150 $publicExponent->SetIntBuffer($PublicExponent);
151 $keySequenceItems = [$modulus, $publicExponent];
152 $keySequence = new ASNValue(ASNValue::TAG_SEQUENCE);
153 $keySequence->SetSequence($keySequenceItems);
155 $bitStringValue = $keySequence->Encode();
156 return $bitStringValue;
160 * @param string $m modulo
161 * @param string $e exponent
164 public static function meToPem($m, $e)
166 $der = self::pkcs8Encode($m, $e);
167 $key = self::DerToPem($der, false);
172 * @param string $key key
173 * @param string $m modulo reference
174 * @param object $e exponent reference
178 private static function pubRsaToMe($key, &$m, &$e)
180 $lines = explode("\n", $key);
182 unset($lines[count($lines)]);
183 $x = base64_decode(implode('', $lines));
185 $r = ASN_BASE::parseASNString($x);
187 $m = Strings::base64UrlDecode($r[0]->asnData[0]->asnData);
188 $e = Strings::base64UrlDecode($r[0]->asnData[1]->asnData);
192 * @param string $key key
196 public static function rsaToPem($key)
198 self::pubRsaToMe($key, $m, $e);
199 return self::meToPem($m, $e);
203 * @param string $key key
207 private static function pemToRsa($key)
209 self::pemToMe($key, $m, $e);
210 return self::meToRsa($m, $e);
214 * @param string $key key
215 * @param string $m modulo reference
216 * @param string $e exponent reference
220 public static function pemToMe($key, &$m, &$e)
222 $lines = explode("\n", $key);
224 unset($lines[count($lines)]);
225 $x = base64_decode(implode('', $lines));
227 $r = ASN_BASE::parseASNString($x);
230 $m = Strings::base64UrlDecode($r[0]->asnData[1]->asnData[0]->asnData[0]->asnData);
231 $e = Strings::base64UrlDecode($r[0]->asnData[1]->asnData[0]->asnData[1]->asnData);
236 * @param string $m modulo
237 * @param string $e exponent
240 private static function meToRsa($m, $e)
242 $der = self::pkcs1Encode($m, $e);
243 $key = self::DerToRsa($der);
248 * @param integer $bits number of bits
250 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
252 public static function newKeypair($bits)
255 'digest_alg' => 'sha1',
256 'private_key_bits' => $bits,
257 'encrypt_key' => false
260 $conf = DI::config()->get('system', 'openssl_conf_file');
262 $openssl_options['config'] = $conf;
264 $result = openssl_pkey_new($openssl_options);
266 if (empty($result)) {
267 Logger::log('new_keypair: failed');
272 $response = ['prvkey' => '', 'pubkey' => ''];
274 openssl_pkey_export($result, $response['prvkey']);
277 $pkey = openssl_pkey_get_details($result);
278 $response['pubkey'] = $pkey["key"];
284 * Encrypt a string with 'aes-256-cbc' cipher method.
286 * Ported from Hubzilla: https://framagit.org/hubzilla/core/blob/master/include/crypto.php
288 * @param string $data
289 * @param string $key The key used for encryption.
290 * @param string $iv A non-NULL Initialization Vector.
292 * @return string|boolean Encrypted string or false on failure.
294 private static function encryptAES256CBC($data, $key, $iv)
296 return openssl_encrypt($data, 'aes-256-cbc', str_pad($key, 32, "\0"), OPENSSL_RAW_DATA, str_pad($iv, 16, "\0"));
300 * Decrypt a string with 'aes-256-cbc' cipher method.
302 * Ported from Hubzilla: https://framagit.org/hubzilla/core/blob/master/include/crypto.php
304 * @param string $data
305 * @param string $key The key used for decryption.
306 * @param string $iv A non-NULL Initialization Vector.
308 * @return string|boolean Decrypted string or false on failure.
310 private static function decryptAES256CBC($data, $key, $iv)
312 return openssl_decrypt($data, 'aes-256-cbc', str_pad($key, 32, "\0"), OPENSSL_RAW_DATA, str_pad($iv, 16, "\0"));
316 * Encrypt a string with 'aes-256-ctr' cipher method.
318 * Ported from Hubzilla: https://framagit.org/hubzilla/core/blob/master/include/crypto.php
320 * @param string $data
321 * @param string $key The key used for encryption.
322 * @param string $iv A non-NULL Initialization Vector.
324 * @return string|boolean Encrypted string or false on failure.
326 private static function encryptAES256CTR($data, $key, $iv)
328 $key = substr($key, 0, 32);
329 $iv = substr($iv, 0, 16);
330 return openssl_encrypt($data, 'aes-256-ctr', str_pad($key, 32, "\0"), OPENSSL_RAW_DATA, str_pad($iv, 16, "\0"));
334 * Decrypt a string with 'aes-256-ctr' cipher method.
336 * Ported from Hubzilla: https://framagit.org/hubzilla/core/blob/master/include/crypto.php
338 * @param string $data
339 * @param string $key The key used for decryption.
340 * @param string $iv A non-NULL Initialization Vector.
342 * @return string|boolean Decrypted string or false on failure.
344 private static function decryptAES256CTR($data, $key, $iv)
346 $key = substr($key, 0, 32);
347 $iv = substr($iv, 0, 16);
348 return openssl_decrypt($data, 'aes-256-ctr', str_pad($key, 32, "\0"), OPENSSL_RAW_DATA, str_pad($iv, 16, "\0"));
353 * Ported from Hubzilla: https://framagit.org/hubzilla/core/blob/master/include/crypto.php
355 * @param string $data
356 * @param string $pubkey The public key.
357 * @param string $alg The algorithm used for encryption.
362 public static function encapsulate($data, $pubkey, $alg = 'aes256cbc')
364 if ($alg === 'aes256cbc') {
365 return self::encapsulateAes($data, $pubkey);
367 return self::encapsulateOther($data, $pubkey, $alg);
372 * Ported from Hubzilla: https://framagit.org/hubzilla/core/blob/master/include/crypto.php
374 * @param string $data
375 * @param string $pubkey The public key.
376 * @param string $alg The algorithm used for encryption.
381 private static function encapsulateOther($data, $pubkey, $alg)
384 Logger::log('no key. data: '.$data);
386 $fn = 'encrypt' . strtoupper($alg);
387 if (method_exists(__CLASS__, $fn)) {
388 $result = ['encrypted' => true];
389 $key = random_bytes(256);
390 $iv = random_bytes(256);
391 $result['data'] = Strings::base64UrlEncode(self::$fn($data, $key, $iv), true);
393 // log the offending call so we can track it down
394 if (!openssl_public_encrypt($key, $k, $pubkey)) {
395 $x = debug_backtrace();
396 Logger::log('RSA failed. ' . print_r($x[0], true));
399 $result['alg'] = $alg;
400 $result['key'] = Strings::base64UrlEncode($k, true);
401 openssl_public_encrypt($iv, $i, $pubkey);
402 $result['iv'] = Strings::base64UrlEncode($i, true);
406 $x = ['data' => $data, 'pubkey' => $pubkey, 'alg' => $alg, 'result' => $data];
407 Hook::callAll('other_encapsulate', $x);
415 * Ported from Hubzilla: https://framagit.org/hubzilla/core/blob/master/include/crypto.php
417 * @param string $data
418 * @param string $pubkey
423 private static function encapsulateAes($data, $pubkey)
426 Logger::log('aes_encapsulate: no key. data: ' . $data);
429 $key = random_bytes(32);
430 $iv = random_bytes(16);
431 $result = ['encrypted' => true];
432 $result['data'] = Strings::base64UrlEncode(self::encryptAES256CBC($data, $key, $iv), true);
434 // log the offending call so we can track it down
435 if (!openssl_public_encrypt($key, $k, $pubkey)) {
436 $x = debug_backtrace();
437 Logger::log('aes_encapsulate: RSA failed. ' . print_r($x[0], true));
440 $result['alg'] = 'aes256cbc';
441 $result['key'] = Strings::base64UrlEncode($k, true);
442 openssl_public_encrypt($iv, $i, $pubkey);
443 $result['iv'] = Strings::base64UrlEncode($i, true);
450 * Ported from Hubzilla: https://framagit.org/hubzilla/core/blob/master/include/crypto.php
452 * @param array $data ['iv' => $iv, 'key' => $key, 'alg' => $alg, 'data' => $data]
453 * @param string $prvkey The private key used for decryption.
455 * @return string|boolean The decrypted string or false on failure.
458 public static function unencapsulate(array $data, $prvkey)
464 $alg = ((array_key_exists('alg', $data)) ? $data['alg'] : 'aes256cbc');
465 if ($alg === 'aes256cbc') {
466 return self::encapsulateAes($data['data'], $prvkey);
468 return self::encapsulateOther($data['data'], $prvkey, $alg);
473 * Ported from Hubzilla: https://framagit.org/hubzilla/core/blob/master/include/crypto.php
476 * @param string $prvkey The private key used for decryption.
479 * @return string|boolean The decrypted string or false on failure.
480 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
482 private static function unencapsulateOther(array $data, $prvkey, $alg)
484 $fn = 'decrypt' . strtoupper($alg);
486 if (method_exists(__CLASS__, $fn)) {
487 openssl_private_decrypt(Strings::base64UrlDecode($data['key']), $k, $prvkey);
488 openssl_private_decrypt(Strings::base64UrlDecode($data['iv']), $i, $prvkey);
490 return self::$fn(Strings::base64UrlDecode($data['data']), $k, $i);
492 $x = ['data' => $data, 'prvkey' => $prvkey, 'alg' => $alg, 'result' => $data];
493 Hook::callAll('other_unencapsulate', $x);
501 * Ported from Hubzilla: https://framagit.org/hubzilla/core/blob/master/include/crypto.php
504 * @param string $prvkey The private key used for decryption.
506 * @return string|boolean The decrypted string or false on failure.
509 private static function unencapsulateAes($data, $prvkey)
511 openssl_private_decrypt(Strings::base64UrlDecode($data['key']), $k, $prvkey);
512 openssl_private_decrypt(Strings::base64UrlDecode($data['iv']), $i, $prvkey);
514 return self::decryptAES256CBC(Strings::base64UrlDecode($data['data']), $k, $i);
519 * Creates cryptographic secure random digits
521 * @param string $digits The count of digits
522 * @return int The random Digits
524 * @throws \Exception In case 'random_int' isn't usable
526 public static function randomDigits($digits)
530 // generating cryptographically secure pseudo-random integers
531 for ($i = 0; $i < $digits; $i++) {
532 $rn .= random_int(0, 9);