dongshetao1814 2014-07-17 18: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 19: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);
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 关于大棚监测的pcb板设计
  • ¥20 sim800c模块 at指令及平台
  • ¥15 stm32开发clion时遇到的编译问题
  • ¥15 lna设计 源简并电感型共源放大器
  • ¥15 如何用Labview在myRIO上做LCD显示?(语言-开发语言)
  • ¥15 Vue3地图和异步函数使用
  • ¥15 C++ yoloV5改写遇到的问题
  • ¥20 win11修改中文用户名路径
  • ¥15 win2012磁盘空间不足,c盘正常,d盘无法写入
  • ¥15 用土力学知识进行土坡稳定性分析与挡土墙设计