php中的xor,在PHP中使用XOR加密/解密

我正在学习加密我有一个这样的问题:

在我的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

{

for($j=0; $j

{

$outText .= ($text[$i] ^ $key[$j]);

//echo 'i=' . $i . ', ' . 'j=' . $j . ', ' . $outText{$i} . '
'; // 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, '=================';

这就是结果:

This is the test————-

PHP Notice: Uninitialized string offset: 29 in C:\

Users\Administrator\Desktop\test.php on line 210 PHP Stack trace: PHP

1. {main}() C:\Users\Administrator\Desktop\test.php:0 PHP 2. xor_this() C:\Users\Administrator\Desktop\test.php:239

Notice: Uninitialized string offset: 29 in

C:\Users\Administrator\Desktop\test.p hp on line 210

Call Stack:

0.0005 674280 1. {main}() C:\Users\Administrator\Desktop\test.php:0

0.0022 674848 2. xor_this() C:\Users\Administrator\Desktop\test.php:23 9

UBE^A►WEAVA►WEAV@◄WEARAFWECWB++++++++

This is zs$fs☺=================

为什么? “UBE ^A►WEAVA►WEAV@◄WEARAFWECWB”是我在实际工作中遇到麻烦的结果.

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

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值