Go语言提供了标准库中的crypto/aes包来支持AES加密和解密。下面是使用AES-128-CBC模式加密和解密的示例代码:
package main
import (
"crypto/aes"
"crypto/cipher"
"encoding/base64"
"fmt"
)
func main() {
key := []byte("this is a 16 byte key")
iv := []byte("this is a 16 byte iv")
plaintext := []byte("hello world")
// 加密
ciphertext, err := encrypt(plaintext, key, iv)
if err