以下是使用CryptoJS进行AES CBC加密,然后使用Golang进行解密的示例代码:
JavaScript/CryptoJS加密:
// 引入CryptoJS库
const CryptoJS = require('crypto-js');
// 定义加密函数
function encryptAES_CBC(message, key, iv) {
// 转换为字节数组
const keyBytes = CryptoJS.enc.Utf8.parse(key);
const ivBytes = CryptoJS.enc.Utf8.parse(iv);
// 加密
const ciphertext = CryptoJS.AES.encrypt(message, keyBytes, {
iv: ivBytes,
mode: CryptoJS.mode.CBC,
padding: CryptoJS.pad.Pkcs7
});
// 返回加密后的密文(Base64格式)
return ciphertext.toString();
}
// 加密消息
const message = 'Hello, World!';
const key = '1234567890123456';
const iv = '1234567890123456';
const encryptedMessage = encryptAES_CBC(message, key, iv);
console.log('加密后的消息:', encryptedMessage);
Golang解密:
package main
import (
"crypto/aes"
"crypto/cipher"
"encoding/base64"
"fmt"
)
// 定义解密函数
func decryptAES_CBC(ciphertext, key, iv string) (string, error) {
// 将密文和密钥进行Base64解码
ciphertextBytes, err := base64.StdEncoding.DecodeString(ciphertext)
if err != nil {
return "", err
}
keyBytes := []byte(key)
ivBytes := []byte(iv)
// 创建AES解密器
block, err := aes.NewCipher(keyBytes)
if err != nil {
return "", err
}
// 创建CBC解密实例
mode := cipher.NewCBCDecrypter(block, ivBytes)
// 解密密文
plaintext := make([]byte, len(ciphertextBytes))
mode.CryptBlocks(plaintext, ciphertextBytes)
// 去除填充数据
paddingSize := int(plaintext[len(plaintext)-1])
plaintext = plaintext[:len(plaintext)-paddingSize]
// 返回解密后的明文
return string(plaintext), nil
}
func main() {
// 解密消息
ciphertext := "p6p3R6IP2o4RiR7NFQ2yGQ=="
key := "1234567890123456"
iv := "1234567890123456"
decryptedMessage, err := decryptAES_CBC(ciphertext, key, iv)
if err != nil {
fmt.Println("解密失败:", err)
return
}
fmt.Println("解密后的消息:", decryptedMessage)
}
在上述代码中,我们使用CryptoJS的AES加密算法进行加密,然后使用Golang的crypto/aes和crypto/cipher库进行解密。注意,加密和解密使用相同的密钥和初始化向量(IV)。