Domanda

Ho un bit crittografato di testo che devo decifrare. È crittografato con AES-256-CBC. Ho il testo crittografato, la chiave e iv. Tuttavia, qualunque cosa io provi, non riesco proprio a farlo funzionare.

Internet ha suggerito che il cifrario Rijndael di mcrypt dovrebbe essere in grado di farlo, quindi ecco quello che ho ora:

function decrypt_data($data, $iv, $key) {
    $cypher = mcrypt_module_open(MCRYPT_RIJNDAEL_128, '', MCRYPT_MODE_CBC, '');

    // initialize encryption handle
    if (mcrypt_generic_init($cypher, $key, $iv) != -1) {
        // decrypt
        $decrypted = mdecrypt_generic($cypher, $data);

        // clean up
        mcrypt_generic_deinit($cypher);
        mcrypt_module_close($cypher);

        return $decrypted;
    }

    return false;
}

Allo stato attuale ricevo 2 avvisi e l'output è incomprensibile:

Warning: mcrypt_generic_init() [function.mcrypt-generic-init]: Key size too large; supplied length: 64, max: 32 in /var/www/includes/function.decrypt_data.php on line 8
Warning: mcrypt_generic_init() [function.mcrypt-generic-init]: Iv size incorrect; supplied length: 32, needed: 16 in /var/www/includes/function.decrypt_data.php on line 8

Qualsiasi aiuto sarebbe apprezzato.

È stato utile?

Soluzione

Non ho molta familiarità con queste cose, ma sembra che provare MCRYPT_RIJNDAEL_256 al posto di MCRYPT_RIJNDAEL_128 sarebbe un ovvio passo successivo ...

Modifica: hai ragione: questo non è ciò di cui hai bisogno. MCRYPT_RIJNDAEL_128 è in effetti la scelta giusta. In base al collegamento fornito, la chiave e IV sono due volte più lunghi di quanto dovrebbero essere:

// How do you do 256-bit AES encryption in PHP vs. 128-bit AES encryption???
// The answer is:  Give it a key that's 32 bytes long as opposed to 16 bytes long.
// For example:
$key256 = '12345678901234561234567890123456';
$key128 = '1234567890123456';

// Here's our 128-bit IV which is used for both 256-bit and 128-bit keys.
$iv =  '1234567890123456';

Altri suggerimenti

Ti invio un esempio, Per favore, controlla il codice, ok

$data_to_encrypt = "2~1~000024~0910~20130723092446~T~00002000~USD~F~375019001012120~0~0~00000000000~";
$key128 = "abcdef0123456789abcdef0123456789";
$iv = "0000000000000000";

$cc = $data_to_encrypt;
$key = $key128;
$iv =  $iv;
$length = strlen($cc);

$cipher = mcrypt_module_open(MCRYPT_RIJNDAEL_128,'','cbc','');

mcrypt_generic_init($cipher, $key, $iv);
$encrypted = base64_encode(mcrypt_generic($cipher,$cc));
mcrypt_generic_deinit($cipher);

mcrypt_generic_init($cipher, $key, $iv);
$decrypted = mdecrypt_generic($cipher,base64_decode($encrypted));
mcrypt_generic_deinit($cipher);

echo "encrypted: " . $encrypted;
echo "<br/>";
echo "length:".strlen($encrypted);
echo "<br/>";
echo "decrypted: " . substr($decrypted, 0, $length);
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top