package main import ( "crypto/aes" "crypto/cipher" "crypto/rand" "encoding/base64" "fmt" "io"
) func main() { // 密钥应该是32字节长度的AES密钥 ke"> package main import ( "crypto/aes" "crypto/cipher" "crypto/rand" "encoding/base64" "fmt" "io"
) func main() { // 密钥应该是32字节长度的AES密钥 ke">
117.info
人生若只如初见

Go语言数据加密与解密怎么实现

在Go语言中,实现数据加密和解密可以使用标准库中的"crypto"和"crypto/aes"包。以下是一个使用AES加密和解密的示例:

package main

import (
	"crypto/aes"
	"crypto/cipher"
	"crypto/rand"
	"encoding/base64"
	"fmt"
	"io"
)

func main() {
	// 密钥应该是32字节长度的AES密钥
	key := []byte("0123456789abcdef")

	// 原始数据
	plaintext := []byte("Hello, World!")

	// 加密数据
	ciphertext, err := encrypt(plaintext, key)
	if err != nil {
		fmt.Println("Error encrypting:", err)
		return
	}
	fmt.Printf("Encrypted text: %s\n", base64.StdEncoding.EncodeToString(ciphertext))

	// 解密数据
	decryptedText, err := decrypt(ciphertext, key)
	if err != nil {
		fmt.Println("Error decrypting:", err)
		return
	}
	fmt.Printf("Decrypted text: %s\n", string(decryptedText))
}

func encrypt(plaintext []byte, key []byte) ([]byte, error) {
	block, err := aes.NewCipher(key)
	if err != nil {
		return nil, err
	}

	nonce := make([]byte, 12)
	if _, err := io.ReadFull(rand.Reader, nonce); err != nil {
		return nil, err
	}

	aesgcm, err := cipher.NewGCM(block)
	if err != nil {
		return nil, err
	}

	ciphertext := aesgcm.Seal(nil, nonce, plaintext, nil)
	return append(nonce, ciphertext...), nil
}

func decrypt(ciphertext []byte, key []byte) ([]byte, error) {
	block, err := aes.NewCipher(key)
	if err != nil {
		return nil, err
	}

	if len(ciphertext) < 12 {
		return nil, fmt.Errorf("ciphertext too short")
	}

	nonce, ciphertext := ciphertext[:12], ciphertext[12:]

	aesgcm, err := cipher.NewGCM(block)
	if err != nil {
		return nil, err
	}

	plaintext, err = aesgcm.Open(nil, nonce, ciphertext, nil)
	if err != nil {
		return nil, err
	}

	return plaintext, nil
}

这个示例中,我们使用了AES-GCM加密模式。首先,我们创建一个AES密钥,然后使用该密钥加密一段原始数据。加密后的数据将以Base64编码的形式输出。接下来,我们使用相同的密钥解密数据,并输出解密后的原始文本。

注意:在实际应用中,请确保密钥的长度和格式是正确的。在这个示例中,我们使用了一个32字节长度的十六进制字符串作为密钥。在实际应用中,你可能需要从安全的来源获取密钥,并将其转换为适当的格式。

未经允许不得转载 » 本文链接:https://www.117.info/ask/feab0AzsOAwJe.html

推荐文章

  • 怎么使用Go语言实现WebSocket通信

    在Go语言中实现WebSocket通信,可以使用标准库中提供的net/http和github.com/gorilla/websocket包。以下是一个简单的示例:
    package main import ( "fmt" "...

  • Go语言中的协程调度怎么实现

    Go语言中的协程调度是由Go语言的运行时系统(runtime)负责的。在Go语言中,每一个goroutine都会被分配给一个操作系统线程来执行,而goroutine之间的调度是由Go语...

  • Go语言垃圾回收机制是怎么工作的

    Go语言的垃圾回收机制使用的是并发标记-清除算法。当一个Go程序运行时,垃圾回收器会周期性地检查程序中不再使用的对象,并且回收它们所占用的内存。垃圾回收器会...

  • 怎么使用Go语言实现加密和解密操作

    在Go语言中,可以使用crypto包来实现加密和解密操作。下面是一个简单的示例,演示如何使用Go语言进行AES加密和解密操作:
    package main import ( "crypto/a...

  • Go语言数据压缩与解压缩怎么实现

    在Go语言中,可以使用标准库中的"compress/gzip"和"io/ioutil"包来实现数据的压缩和解压缩。下面是一个简单的示例,展示了如何使用这些包进行ZIP文件的压缩和解压...

  • Go语言文件读写操作的方法是什么

    在Go语言中,文件读写操作主要通过os和io/ioutil包来实现。下面是一些常用的文件读写方法: 读取文件: 使用os.Open()函数打开文件,返回一个*File类型的文件对象...

  • Go语言环境变量如何配置

    在Go语言中,环境变量通常用于配置程序运行时的行为。要配置Go语言的环境变量,你可以使用os.Setenv函数在程序中设置环境变量,或者通过操作系统的环境变量设置来...

  • Kotlin日期与时间处理的方法是什么

    在 Kotlin 中,可以使用 java.time 库来处理日期和时间。这个库是 Java 8 引入的新的日期和时间 API,它提供了很多有用的类和函数来处理日期、时间、时区等。以下...