15

暗号について勉強しています。そして、私は次のような問題を抱えていました:

平文を鍵で XOR した後、16 進型として「010e010c15061b4117030f54060e54040e0642181b17」という暗号を取得します。この暗号から平文を取得したい場合、PHP で何をすればよいですか?

string/int に変換してみました。その後、キー (3 文字) を使用して 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:\ Users\Administrator\Desktop\test.php の 29 行 210 PHP スタック トレース: PHP 1. {main}() C:\Users\Administrator\Desktop\test.php:0 PHP 2. xor_this() C:\Users\Administrator\Desktop\test.php:239

Notice: 初期化されていない文字列オフセット: C:\Users\Administrator\Desktop\test.p hp の 210 行目の 29

コール スタック: 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++++++++

zs$fsです☺=================

なんで?「UBE^A►WEAVA►WEAV@◄WEARAFWECWB++++++++」は、実作業で苦労した結果です。

4

3 に答える 3

28

これを試して:

function xor_this($string) {

    // Let's define our key here
    $key = ('magic_key');

    // 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) && $i<strlen($text)); $j++,$i++)
        {
            $outText .= $text{$i} ^ $key{$j};
            //echo 'i=' . $i . ', ' . 'j=' . $j . ', ' . $outText{$i} . '<br />'; // For debugging
        }
    }
    return $outText;
}

基本的に、テキストを元に戻す (偶数の数字が入っている) には、同じ関数を使用できます。

$textToObfuscate = "Some Text 12345";
$obfuscatedText = xor_this($textToObfuscate);
$restoredText = xor_this($obfuscatedText);
于 2013-02-03T14:39:52.017 に答える