Applied fixes from StyleCI

This commit is contained in:
Daniil Gentili 2016-08-08 10:09:22 -04:00 committed by StyleCI Bot
parent 651459edb0
commit 7eb4bb8d49
2 changed files with 21 additions and 14 deletions

View File

@ -1,19 +1,26 @@
<?php
namespace danog\MadelineProto;
class RSA extends TL {
class RSA extends TL
{
public $key;
public $n;
public $e;
public $fp;
public function __construct($key) {
public function __construct($key)
{
$this->key = new \phpseclib\Crypt\RSA($key);
$this->n = $key->modulus;
$this->e = $key->exponent;
$this->fp = new \phpseclib\Math\BigInteger(substr(sha1($this->serialize_param('bytes', $this->n->toBytes()).$this->serialize_param('bytes', $this->e->toBytes()), true), -8), 256);
}
public function encrypt($data) {
public function encrypt($data)
{
$bigintdata = new \phpseclib\Math\BigInteger($data, 256);
return $bigintdata->powMod($this->e, $this->n)->toBytes();
}
}

View File

@ -32,7 +32,7 @@ an9tqw3bfUV/nqgbhGX81v/+7RFAEd+RwFnK7a+XYl9sluzHRyVVaTTveB2GazTw
Efzk2DWgkBluml8OREmvfraX3bkHZJTKX4EQSjBbbdJ2ZXIsRrYOXfaA+xayEGB+
8hdlLmAjbCVfaigxX0CDqWeR1yFL9kwd9P0NsZRPsmoqVwMbMu7mStFai6aIhc3n
Slv8kg9qv1m6XHVQY3PnEw+QQtqSIXklHwIDAQAB
-----END RSA PUBLIC KEY-----'
-----END RSA PUBLIC KEY-----',
];
foreach ($default_settings as $key => $param) {
if (!isset($settings[$key])) {
@ -45,7 +45,7 @@ Slv8kg9qv1m6XHVQY3PnEw+QQtqSIXklHwIDAQAB
$this->sock = new Connection($this->settings['ip_address'], $this->settings['ip_address'], $this->settings['protocol']);
// Load rsa key
$this->key = new RSA($settings["rsa_key"]);
$this->key = new RSA($settings['rsa_key']);
// Istantiate struct class
$this->struct = new \danog\PHP\Struct();
// Istantiate prime class