ZBLOG

golang AES加解密

在Go语言中,你可以使用crypto/aes包来进行AES加解密操作。以下是一个简单的示例代码:

package main

import (
	"crypto/aes"
	"crypto/cipher"
	"encoding/hex"
	"fmt"
)

func main() {
	key := []byte("0123456789abcdef") // 16字节的AES密钥
	plaintext := []byte("Hello, AES!") // 要加密的明文

	ciphertext, err := encrypt(plaintext, key)
	if err != nil {
		fmt.Println("加密失败:", err)
		return
	}

	fmt.Printf("加密后的密文: %s\n", hex.EncodeToString(ciphertext))

	decryptedText, err := decrypt(ciphertext, key)
	if err != nil {
		fmt.Println("解密失败:", err)
		return
	}

	fmt.Printf("解密后的明文: %s\n", decryptedText)
}

func encrypt(plaintext []byte, key []byte) ([]byte, error) {
	block, err := aes.NewCipher(key)
	if err != nil {
		return nil, fmt.Errorf("创建AES块失败: %w", err)
	}

	ciphertext := make([]byte, aes.BlockSize+len(plaintext))
	initializationVector := ciphertext[:aes.BlockSize]

	if _, err = rand.Read(initializationVector); err != nil { // 随机生成初始化向量IV
        return nil, fmt.Errorf("生成随机IV失败: %w", err)
    }

	mode := cipher.NewCBCEncrypter(block, initializationVector)
	mode.CryptBlocks(ciphertext[aes.BlockSize:], plaintext)

	return ciphertext, nil
}

func decrypt(ciphertext []byte, key []byte) ([]byte, error) {
	block, err := aes.NewCipher(key)
	if err != nil {
		return nil, fmt.Errorf("创建AES块失败: %w", err)
	}

	if len(ciphertext) < aes.BlockSize {
		return nil, fmt.Errorf("密文长度错误")
	}

	initializationVector := ciphertext[:aes.BlockSize]
	ciphertext = ciphertext[aes.BlockSize:]

	mode := cipher.NewCBCDecrypter(block, initializationVector)
	mode.CryptBlocks(ciphertext, ciphertext)

	return ciphertext, nil
}

请注意,这只是一个简单的示例代码,并不考虑填充和其他安全性方面的细节。在实际使用中,请确保按照最佳实践进行加解密操作。


内容由零声教学AI助手提供,问题来源于学员提问

本站部分文章来源于网络,版权归原作者所有,如有侵权请联系站长删除。
转载请注明出处:https://golang.0voice.com/?id=8053

分享:
扫描分享到社交APP
上一篇
下一篇
发表列表
游客 游客
此处应有掌声~
评论列表

还没有评论,快来说点什么吧~

联系我们

在线咨询: 点击这里给我发消息

微信号:3007537140

上班时间: 10:30-22:30

关注我们
x

注册

已经有帐号?