|
@@ -87,7 +87,6 @@ class OriginBank
|
|
|
#加密
|
|
|
private function encrypt($input, $key) {
|
|
|
$size = @mcrypt_get_block_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_ECB);
|
|
|
- dump('size');dump($size);
|
|
|
$input = $this->pkcs5_pad($input, $size);
|
|
|
$td = @mcrypt_module_open(MCRYPT_RIJNDAEL_128, '', MCRYPT_MODE_ECB, '');
|
|
|
$iv = @mcrypt_create_iv (mcrypt_enc_get_iv_size($td), MCRYPT_RAND);
|