I need to be able to replicate a class that is created in PHP to C # Attached class code created in PHP. At this moment I must send an encrypted string to a client platform, but I can not send the encryption in the same way as it is done in PHP. I've tried several codes in c # but nothing works for me.
<?php
class MCrypt {
private $iv;
private $key;
public function __construct($vkey,$viv) {
$this->key = $vkey;
$this->iv = $viv;
}
public function encrypt($str) {
$str = $this->pkcs5_pad($str);
$td = mcrypt_module_open(MCRYPT_RIJNDAEL_128, '', MCRYPT_MODE_CBC, $this->iv);
mcrypt_generic_init($td, $this->key, $this->iv);
$encrypted = mcrypt_generic($td, $str);
mcrypt_generic_deinit($td);
mcrypt_module_close($td);
return bin2hex($encrypted);
}
public function decrypt($code) {
$code = $this->hex2bin($code);
$td = mcrypt_module_open(MCRYPT_RIJNDAEL_128, '', MCRYPT_MODE_CBC, $this->iv);
mcrypt_generic_init($td, $this->key, $this->iv);
$decrypted = mdecrypt_generic($td, $code);
mcrypt_generic_deinit($td);
mcrypt_module_close($td);
$ut = utf8_encode(trim($decrypted));
return $this->pkcs5_unpad($ut);
}
protected function hex2bin($hexdata) {
$bindata = '';
for ($i = 0; $i < strlen($hexdata); $i += 2) {
$bindata .= chr(hexdec(substr($hexdata, $i, 2)));
}
return $bindata;
}
protected function pkcs5_pad ($text) {
$blocksize = 16;
$pad = $blocksize - (strlen($text) % $blocksize);
return $text . str_repeat(chr($pad), $pad);
}
protected function pkcs5_unpad($text) {
$pad = ord($text{strlen($text)-1});
if ($pad > strlen($text)) {
return $text;
}
if (strspn($text, chr($pad), strlen($text) - $pad) != $pad) {
return $text;
}
return substr($text, 0, -1 * $pad);
}
}
?>