为了账号安全,请及时绑定邮箱和手机立即绑定

使用Go编码AES并使用CryptoJS解码

使用Go编码AES并使用CryptoJS解码

Go
一只斗牛犬 2021-05-20 18:09:40
我在Go中有这些:var commonIV = []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}plaintext := []byte("hello, world")key_text := "32o4908go293hohg98fh40gh"c, err := aes.NewCipher([]byte(key_text))if err != nil {    fmt.Printf("Error: NewCipher(%d bytes) = %s", len(key_text), err)    return}cfbdec := cipher.CBCEncrypter(c, commonIV)ciphertext := make([]byte, len(plaintext))cfbdec.CryptBlock(ciphertext, plaintext)fmt.Printf("%x", ciphertext) //HEX输出:e0df84c3b83681a8133e1787然后导入以下网址:<script src="http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/aes.js"></script><script src="http://crypto-js.googlecode.com/svn/tags/3.1.2/build/components/enc-base64-min.js"></script><script src="http://crypto-js.googlecode.com/svn/tags/3.1.2/build/components/mode-cfb-min.js"></script><script src="http://crypto-js.googlecode.com/svn/tags/3.1/build/components/pad-nopadding.js"></script>我在JS中的代码如下:var data = CryptoJS.enc.Hex.parse("e0df84c3b83681a8133e1787");console.log(data);var key = "32o4908go293hohg98fh40gh";var iv = CryptoJS.enc.Base64.parse("AAAAAAAAAAAAAAAAAAAAAA==");console.log(iv);var encrypted = {};encrypted.key=key;encrypted.iv=iv;encrypted.ciphertext = data;var dec = CryptoJS.AES.decrypt(encrypted, key, { mode: CryptoJS.mode.CFB, iv: iv,  padding: CryptoJS.pad.NoPadding  });console.log(dec);console.log(dec.toString());console.log(dec.toString(CryptoJS.enc.Utf8));我做错了什么?
查看完整描述

2 回答

?
炎炎设计

TA贡献1808条经验 获得超4个赞

看起来您CBCEncrypter在Go中使用了(块计数器模式),但是CryptoJS.mode.CFB在JS代码中使用了(密码反馈模式)。据我所知,这些不是兼容的块模式。


查看完整回答
反对 回复 2021-05-31
?
慕侠2389804

TA贡献1719条经验 获得超6个赞

您是否不想在Go代码中使用CBCEncrypter?


查看完整回答
反对 回复 2021-05-31
  • 2 回答
  • 0 关注
  • 258 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信