Golang里的AES、DES、3DES加解密是怎样的
AES
1、AES(Advanced Encryption Standard,高级加密标准),又称Rijndael加密法,是美国联邦政府采用的一种区块加密标准。Golang里提供了AES加密的实现,可以使用aes包,其中包含了AES的基本实现,以及CBC、CFB等模式的实现。
2、AES加密的实现代码如下:
package main
import (
"crypto/aes"
"crypto/cipher"
"fmt"
)
func main() {
// 要加密的字符串
src := []byte("Hello World!")
// 密钥
key := []byte("1234567890123456")
// 创建一个加密算法aes
block, err := aes.NewCipher(key)
if err != nil {
fmt.Println("key error", err)
return
}
// 加密字符串
cipherText := make([]byte, len(src))
blockMode := cipher.NewCBCEncrypter(block, key)
blockMode.CryptBlocks(cipherText, src)
fmt.Println(cipherText)
DES
1、DES(Data Encryption Standard,数据加密标准),是一种使用密钥加密的块算法,Golang里提供了DES加解密的实现,可以使用des包,其中包含了DES的基本实现,以及CBC、CFB等模式的实现。
2、DES加密的实现代码如下:
package main
import (
"crypto/des"
"crypto/cipher"
"fmt"
)
func main() {
// 要加密的字符串
src := []byte("Hello World!")
// 密钥
key := []byte("12345678")
// 创建一个加密算法aes
block, err := des.NewCipher(key)
if err != nil {
fmt.Println("key error", err)
return
}
// 加密字符串
cipherText := make([]byte, len(src))
blockMode := cipher.NewCBCEncrypter(block, key)
blockMode.CryptBlocks(cipherText, src)
fmt.Println(cipherText)
3DES
1、3DES(Triple Data Encryption Standard,三重数据加密标准),是DES的一种模式,它使用3条56位的密钥对数据进行三次加密,强度更高。Golang里提供了3DES加解密的实现,可以使用des包,其中包含了3DES的基本实现,以及CBC、CFB等模式的实现。
2、3DES加密的实现代码如下:
package main
import (
"crypto/des"
"crypto/cipher"
"fmt"
)
func main() {
// 要加密的字符串
src := []byte("Hello World!")
// 密钥
key := []byte("1234567890123456")
// 创建一个加密算法aes
block, err := des.NewTripleDESCipher(key)
if err != nil {
fmt.Println("key error", err)
return
}
// 加密字符串
cipherText := make([]byte, len(src))
blockMode := cipher.NewCBCEncrypter(block, key)
blockMode.CryptBlocks(cipherText, src)
fmt.Println(cipherText)
猜您想看
-
Spark有向无环图检测的示例分析
一、Spark...
2023年05月23日 -
redis total_connections_received过多导致CPU100%怎么办
1、Redis...
2023年05月26日 -
如何进行ThreadPoolExecutor的keepAliveTime=0说明
1、Threa...
2023年05月22日 -
使用PHP和Elasticsearch构建搜索引擎的技巧
1. 安装PH...
2023年05月14日 -
如何在Docker中使用容器监控?
如何在Dock...
2023年04月16日 -
如何在 CentOS 7 上安装和配置 OpenLDAP 客户端?
在CentOS...
2023年04月26日