在 PHP 中使用 XOR 加密/解密
2022-08-31 00:08:53
我正在学习加密。我遇到了这样的问题:
在我用密钥XOR明文之后,我得到一个密码,“010e010c15061b4117030f54060e54040e0642181b17”,作为十六进制类型。如果我想从这个密码中获取明文,我应该在PHP中做什么?
我尝试将其转换为字符串/ int,然后用键(三个字母)将它们带到XOR。但它不起作用。
这是代码:
function xor_this($string) {
// Let's define our key here
$key = 'fpt';
// Our plaintext/ciphertext
$text = $string;
// Our output text
$outText = '';
// Iterate through each character
for($i=0; $i<strlen($text); )
{
for($j=0; $j<strlen($key); $j++,$i++)
{
$outText .= ($text[$i] ^ $key[$j]);
//echo 'i=' . $i . ', ' . 'j=' . $j . ', ' . $outText{$i} . '<br />'; // For debugging
}
}
return $outText;
}
function strToHex($string)
{
$hex = '';
for ($i=0; $i < strlen($string); $i++)
{
$hex .= dechex(ord($string[$i]));
}
return $hex;
}
function hexToStr($hex)
{
$string = '';
for ($i=0; $i < strlen($hex)-1; $i+=2)
{
$string .= chr(hexdec($hex[$i].$hex[$i+1]));
}
return $string;
}
$a = "This is the test";
$b = xor_this($a);
echo xor_this($b), '-------------';
//
$c = strToHex($b);
$e = xor_this($c);
echo $e, '++++++++';
//
$d = hexToStr($c);
$f = xor_this($d);
echo $f, '=================';
结果是这样的:
这是测试-------------
PHP 注意:未初始化的字符串偏移量:C:\ 中的 29用户\管理员\桌面\测试.php第 210 行 PHP 堆栈跟踪:PHP 1。{主}() C:\用户\管理员\桌面\测试.php:02 菲律宾比索。xor_this() C:\Users\Administrator\Desktop\test.php:239
注意:未初始化的字符串偏移量:29 在 C:\Users\Administrator\Desktop\test.p hp 行 210
调用堆栈:0.0005 674280 1。{主}() C:\用户\管理员\桌面\测试.php:00.0022 674848 2.xor_this() C:\Users\Administrator\Desktop\test.php:23 9
UBE^A►WEAVA►WEAV@◄WEARAFWECWB++++++++
这是 zs$fs☺====================================
为什么?“UBE^A►WEAVA►WEAV@◄WEARAFWECWB++++++++”是结果,我在实际工作中遇到了麻烦。