Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Applied fixes from StyleCI #2

Merged
merged 1 commit into from
Jul 15, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
225 changes: 113 additions & 112 deletions aes256.php
Original file line number Diff line number Diff line change
@@ -1,118 +1,119 @@
<?php

// by https://github.com/mgp25
class TelegramEncryption
{
public $key;
public $iv;
public $cipherText;
public $plainText;
public $debug;

public function __construct($key, $iv, $cipherText = null, $plainText = null, $debug = false)
{
$this->key = $key;
$this->iv = $iv;
$this->cipherText = $cipherText;
$this->plainText = $plainText;
$this->debug = $debug;
}
public function IGE256Decrypt()
{

$key = $this->key;
$message = $this->cipherText;
$blockSize = mcrypt_get_block_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_ECB);

$xPrev = substr($this->iv, 0, $blockSize);
$yPrev = substr($this->iv, $blockSize, strlen($this->iv));

$decrypted = '';

for ($i=0; $i < strlen($message); $i += $blockSize)
{
$x = substr($message, $i, $blockSize);
$this->debugLog("x: " . _c($x) . "\n");

$yXOR = $this->exor($x, $yPrev);
$this->debugLog("yPrev: " . _c($yPrev) . "\n");
$this->debugLog("yXOR: " . _c($yXOR) . "\n");
$yFinal = mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $key, $yXOR, MCRYPT_MODE_ECB);
$yFinal = str_pad($yFinal, strlen($xPrev), "\x00");
$this->debugLog("yFinal: " . _c($yFinal) . "\n");

$y = $this->exor($yFinal, $xPrev);
$this->debugLog("xPrev: " . _c($xPrev) . "\n");
$this->debugLog("y: " . _c($y) . "\n");

$xPrev = $x;
$yPrev = $y;
$decrypted .= $y;

$this->debugLog("Currently Decrypted: "._c($decrypted)."\n\n");
}
return $decrypted;
}

public function IGE256Encrypt()
{
$key = $this->key;
$message = $this->plainText;
$blockSize = mcrypt_get_block_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_ECB);

$xPrev = substr($this->iv, $blockSize, strlen($this->iv));
$yPrev = substr($this->iv, 0, $blockSize);

$encrypted = '';

for ($i=0; $i < strlen($message); $i += $blockSize)
{

$x = substr($message, $i, $blockSize);
$this->debugLog("x: " . _c($x) . "\n");

$yXOR = $this->exor($x, $yPrev);
$this->debugLog("yPrev: " . _c($yPrev) . "\n");
$this->debugLog("yXOR: " . _c($yXOR) . "\n");
$yFinal = mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $key, $yXOR, MCRYPT_MODE_ECB);
$yFinal = str_pad($yFinal, strlen($xPrev), "\x00");
$this->debugLog("yFinal: " . _c($yFinal) . "\n");
$y = $this->exor($yFinal, $xPrev);
$this->debugLog("xPrev: " . _c($xPrev) . "\n");
$this->debugLog("y: " . _c($y) . "\n");

$xPrev = $x;
$yPrev = $y;

$encrypted .= $y;
$this->debugLog("Currently encrypted: "._c($encrypted)."\n\n");
}
return $encrypted;
}

public function debugLog($message)
{
if ($this->debug)
echo $message;
}

public function exor($array1, $array2)
{
$len = (strlen($array1) <= strlen($array2)) ? strlen($array2) : strlen($array1);

$array1 = str_pad($array1, $len, "\x00");
$array2 = str_pad($array2, $len, "\x00");

$res = '';
for ($i=0; $i < $len; $i++)
{
$res .= $array1[$i] ^ $array2[$i];
}
return $res;
}

function _c($binary) {
return sprintf("[%s]", chunk_split(bin2hex($binary), 4," ")
public $key;
public $iv;
public $cipherText;
public $plainText;
public $debug;

public function __construct($key, $iv, $cipherText = null, $plainText = null, $debug = false)
{
$this->key = $key;
$this->iv = $iv;
$this->cipherText = $cipherText;
$this->plainText = $plainText;
$this->debug = $debug;
}

public function IGE256Decrypt()
{
$key = $this->key;
$message = $this->cipherText;
$blockSize = mcrypt_get_block_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_ECB);

$xPrev = substr($this->iv, 0, $blockSize);
$yPrev = substr($this->iv, $blockSize, strlen($this->iv));

$decrypted = '';

for ($i = 0; $i < strlen($message); $i += $blockSize) {
$x = substr($message, $i, $blockSize);
$this->debugLog('x: '._c($x)."\n");

$yXOR = $this->exor($x, $yPrev);
$this->debugLog('yPrev: '._c($yPrev)."\n");
$this->debugLog('yXOR: '._c($yXOR)."\n");
$yFinal = mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $key, $yXOR, MCRYPT_MODE_ECB);
$yFinal = str_pad($yFinal, strlen($xPrev), "\x00");
$this->debugLog('yFinal: '._c($yFinal)."\n");

$y = $this->exor($yFinal, $xPrev);
$this->debugLog('xPrev: '._c($xPrev)."\n");
$this->debugLog('y: '._c($y)."\n");

$xPrev = $x;
$yPrev = $y;
$decrypted .= $y;

$this->debugLog('Currently Decrypted: '._c($decrypted)."\n\n");
}

return $decrypted;
}

public function IGE256Encrypt()
{
$key = $this->key;
$message = $this->plainText;
$blockSize = mcrypt_get_block_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_ECB);

$xPrev = substr($this->iv, $blockSize, strlen($this->iv));
$yPrev = substr($this->iv, 0, $blockSize);

$encrypted = '';

for ($i = 0; $i < strlen($message); $i += $blockSize) {
$x = substr($message, $i, $blockSize);
$this->debugLog('x: '._c($x)."\n");

$yXOR = $this->exor($x, $yPrev);
$this->debugLog('yPrev: '._c($yPrev)."\n");
$this->debugLog('yXOR: '._c($yXOR)."\n");
$yFinal = mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $key, $yXOR, MCRYPT_MODE_ECB);
$yFinal = str_pad($yFinal, strlen($xPrev), "\x00");
$this->debugLog('yFinal: '._c($yFinal)."\n");
$y = $this->exor($yFinal, $xPrev);
$this->debugLog('xPrev: '._c($xPrev)."\n");
$this->debugLog('y: '._c($y)."\n");

$xPrev = $x;
$yPrev = $y;

$encrypted .= $y;
$this->debugLog('Currently encrypted: '._c($encrypted)."\n\n");
}

return $encrypted;
}

public function debugLog($message)
{
if ($this->debug) {
echo $message;
}
}

public function exor($array1, $array2)
{
$len = (strlen($array1) <= strlen($array2)) ? strlen($array2) : strlen($array1);

$array1 = str_pad($array1, $len, "\x00");
$array2 = str_pad($array2, $len, "\x00");

$res = '';
for ($i = 0; $i < $len; $i++) {
$res .= $array1[$i] ^ $array2[$i];
}

return $res;
}

public function _c($binary)
{
return sprintf('[%s]', chunk_split(bin2hex($binary), 4, ' ')
);
}

}
}