php 5.5 des解密,使用php进行TRIPLE DES加密/解密

我在PHP中有这个TRIPLE DES ENCRYPTION CODE

$encryption_key = "CE51E06875F7D964";

$data='tokenNo=test&securityCode=111' ;

echo $desEncryptedData = encryptText_3des($data, $encryption_key);//outputs 3des encrypted data

function encryptText_3des($plainText, $key) {

$key = hash("md5", $key, TRUE);

for ($x=0;$x<8;$x++) {

$key = $key.substr($key, $x, 1);

}

$padded = pkcs5_pad($plainText,

mcrypt_get_block_size(MCRYPT_3DES, MCRYPT_MODE_CBC));

$encrypted = base64_encode(mcrypt_encrypt(MCRYPT_3DES, $key, $padded, MCRYPT_MODE_CBC));

return $encrypted;

}

function pkcs5_pad ($text, $blocksize)

{

$pad = $blocksize - (strlen($text) % $blocksize);

return $text . str_repeat(chr($pad), $pad);

}

我能够将数据加密为xcFEvIdLXc2fjhG1i4iPOQu5L6ahxwZVucDOPqeMM2E =

现在我有了密钥,我能将这些数据解密为纯文本格式吗?

我试过这种方式

$encryption_key = "CE51E06875F7D964";

$data='xcFEvIdLXc2fjhG1i4iPOQu5L6ahxwZVucDOPqeMM2E=' ; //encrypted data

echo $desEncryptedData = encryptText_3des($data, $encryption_key);//outputs 3des encrypted data

function encryptText_3des($plainText, $key) {

$key = hash("md5", $key, TRUE);

for ($x=0;$x<8;$x++) {

$key = $key.substr($key, $x, 1);

}

$padded = pkcs5_unpad($plainText,

mcrypt_get_block_size(MCRYPT_3DES, MCRYPT_MODE_CBC));

$encrypted = base64_encode(mcrypt_encrypt(MCRYPT_3DES, $key, $padded, MCRYPT_MODE_CBC));

return $encrypted;

}

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);

}

但我无法做到.我正在做的事情是错的?请建议我解密这个问题?加密密钥本身是用来解密三重DES中的数据吗?请帮忙

解决方法:

这是解决方案:

public function encrypt($data, $secret)

{

//Generate a key from a hash

$key = md5(utf8_encode($secret), true);

//Take first 8 bytes of $key and append them to the end of $key.

$key .= substr($key, 0, 8);

//Pad for PKCS7

$blockSize = mcrypt_get_block_size('tripledes', 'ecb');

$len = strlen($data);

$pad = $blockSize - ($len % $blockSize);

$data .= str_repeat(chr($pad), $pad);

//Encrypt data

$encData = mcrypt_encrypt('tripledes', $key, $data, 'ecb');

return base64_encode($encData);

}

public function decrypt($data, $secret)

{

//Generate a key from a hash

$key = md5(utf8_encode($secret), true);

//Take first 8 bytes of $key and append them to the end of $key.

$key .= substr($key, 0, 8);

$data = base64_decode($data);

$data = mcrypt_decrypt('tripledes', $key, $data, 'ecb');

$block = mcrypt_get_block_size('tripledes', 'ecb');

$len = strlen($data);

$pad = ord($data[$len-1]);

return substr($data, 0, strlen($data) - $pad);

}

问候.

标签:php,cryptography,encryption,tripledes

来源: https://codeday.me/bug/20190717/1491254.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值