dongshetao1814 2014-07-17 10:01
浏览 45
已采纳

从as3crypto解密php中的AES-CBC

I've found a lot of discussions on this but none seem to get this working for me so any help is appreciated. I'm encoding some text in flash using the as3crypto library and then sending that encrypted text to a php script where I need to decode it. The encryption and decryption works just fine inside of flash but I'm unable to get it to decrypt in php.

Here is the code I have in Flash

private static const KEY:String = "AxiKzCRH5arSABesX9bH2lTSxYmAGEEz";

private static function encrypt(input:String, key:String, algorithm:String = "aes-cbc", padding:String = "None"):String {
    var kdata:ByteArray = Base64.decodeToByteArray(key);
    var data:ByteArray = Hex.toArray(Hex.fromString(input));
    var pad:IPad = padding == "pkcs5" ? new PKCS5 : new NullPad;
    var mode:ICipher = Crypto.getCipher("simple-" + algorithm, kdata, pad);
    pad.setBlockSize(mode.getBlockSize());
    mode.encrypt(data);

    return Hex.fromArray(data);
}

var text-to-send-to-php:String = encrypt('test text', KEY);

And here is the code I have so far in php that isn't working

<?php
$key = 'AxiKzCRH5arSABesX9bH2lTSxYmAGEEz';
$encrypted_text = the-text-i-get-from-flash;

$td = mcrypt_module_open(MCRYPT_RIJNDAEL_128, '', MCRYPT_MODE_CBC, '');

$iv = mcrypt_create_iv(mcrypt_enc_get_iv_size($td), MCRYPT_DEV_URANDOM);
mcrypt_generic_init($td, $key, $iv);

$s = mdecrypt_generic($td, $encrypted_text);
echo 'decrypted = ' . $s;

mcrypt_generic_deinit($td);
mcrypt_module_close($td);
?>

展开全部

  • 写回答

1条回答 默认 最新

  • doufei1893 2014-07-17 11:37
    关注

    So I figured it was an issue with encoding/decoding, but it was also an issue with the IV. Here is the final working code in php

    <?php
    $key = base64_decode('AxiKzCRH5arSABesX9bH2lTSxYmAGEEz');
    $encrypted_text = the-text-i-get-from-flash;
    $encrypted_text = hex2bin($encrypted_text);
    
    $td = mcrypt_module_open(MCRYPT_RIJNDAEL_128, '', MCRYPT_MODE_CBC, '');
    $blocksize = mcrypt_enc_get_block_size($td);
    
    $iv = substr($encrypted_text, 0, $blocksize);
    $encrypted_text = substr($encrypted_text, $blocksize);
    
    mcrypt_generic_init($td, $key, $iv);
    
    $username = mdecrypt_generic($td, $encrypted_text);
    
    mcrypt_generic_deinit($td);
    mcrypt_module_close($td);
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部