diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-02-08 10:12:04 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-02-08 10:12:04 +0100 |
commit | 9e64ce7da77bf1dbe3c4fa29cc877900d3448049 (patch) | |
tree | 0b42198552900a95c3fb33bc8e0e4e2611e96a6c | |
parent | 661c20e452255754bbccadc3b29dc3c598c07ed0 (diff) | |
parent | dc88ccdc0b8af8c9af033b3eaf325cee0c195ff8 (diff) | |
download | volse-hubzilla-9e64ce7da77bf1dbe3c4fa29cc877900d3448049.tar.gz volse-hubzilla-9e64ce7da77bf1dbe3c4fa29cc877900d3448049.tar.bz2 volse-hubzilla-9e64ce7da77bf1dbe3c4fa29cc877900d3448049.zip |
Merge remote-tracking branch 'mike/master' into dev
-rw-r--r-- | include/crypto.php | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/include/crypto.php b/include/crypto.php index b990b18d9..105c1c54f 100644 --- a/include/crypto.php +++ b/include/crypto.php @@ -31,19 +31,6 @@ function rsa_verify($data,$sig,$key,$alg = 'sha256') { return (($verify > 0) ? true : false); } -function pkcs5_pad ($text, $blocksize) -{ - $pad = $blocksize - (strlen($text) % $blocksize); - return $text . str_repeat(chr($pad), $pad); -} - -function pkcs5_unpad($text) -{ - $pad = ord($text{strlen($text)-1}); - if ($pad > strlen($text)) return false; - if (strspn($text, chr($pad), strlen($text) - $pad) != $pad) return false; - return substr($text, 0, -1 * $pad); -} function AES256CBC_encrypt($data,$key,$iv) { @@ -282,37 +269,6 @@ function new_keypair($bits) { } -function pkcs1to8($oldkey,$len) { - - if($len == 4096) - $c = 'g'; - if($len == 2048) - $c = 'Q'; - - if(strstr($oldkey,'BEGIN PUBLIC')) - return $oldkey; - - $oldkey = str_replace('-----BEGIN RSA PUBLIC KEY-----', '', $oldkey); - $oldkey = trim(str_replace('-----END RSA PUBLIC KEY-----', '', $oldkey)); - $key = 'MIICIjANBgkqhkiG9w0BAQEFAAOCA' . $c . '8A' . str_replace("\n", '', $oldkey); - $key = "-----BEGIN PUBLIC KEY-----\n" . wordwrap($key, 64, "\n", true) . "\n-----END PUBLIC KEY-----"; - return $key; -} - -function pkcs8to1($oldkey,$len) { - - if(strstr($oldkey,'BEGIN RSA')) - return $oldkey; - - $oldkey = str_replace('-----BEGIN PUBLIC KEY-----', '', $oldkey); - $oldkey = trim(str_replace('-----END PUBLIC KEY-----', '', $oldkey)); - $key = str_replace("\n",'',$oldkey); - $key = substr($key,32); - $key = "-----BEGIN RSA PUBLIC KEY-----\n" . wordwrap($key, 64, "\n", true) . "\n-----END RSA PUBLIC KEY-----"; - return $key; -} - - function DerToPem($Der, $Private=false) { //Encode: |