Go 利用crypto实现aes-256-ecb计算方法
高级加密标准(英语:Advanced Encryption Standard,缩写:AES),又称Rijndael加密法,是美国联邦政府采用的一种区块加密标准。这个标准用来替代原先的DES,已经被多方分析且广为全世界所使用。经过五年的甄选流程,高级加密标准由美国国家标准与技术研究院(NIST)于2001年11月26日发布于FIPS PUB 197,并在2002年5月26日成为有效的标准。现在,高级加密标准已然成为对称密钥加密中最流行的算法之一。
aes-192-ecb密钥的长度为24字节,aes-256-ecb密钥的长度为32字节,aes-128-ecb密码的长度为16字节。aes-ecb只需要密钥就行,不需要iv。
电码本模式(Electronic Codebook Book (ECB)).
代码:
package main
import (
"bytes"
"crypto/aes"
"crypto/md5"
"fmt"
)
func main() {
fmt.Println("go crypto aes-256-ecb demo/example.")
message := []byte("https://const.net.cn")
//指定密钥
key := []byte("12345678123456781234567812345678")
//加密
cipherText := AES_ECB_Encrypt(message, key)
fmt.Printf("加密后:%x\n", cipherText)
fmt.Printf("MD5后为:%x\n", md5.Sum(cipherText))
//解密
plainText := AES_ECB_Decrypt(cipherText, key)
fmt.Println("解密后为:", string(plainText))
}
//对明文进行填充
func Padding(plainText []byte, blockSize int) []byte {
//计算要填充的长度
n := blockSize - len(plainText)%blockSize
//对原来的明文填充n个n
temp := bytes.Repeat([]byte{byte(n)}, n)
plainText = append(plainText, temp...)
return plainText
}
//对密文删除填充
func UnPadding(cipherText []byte) []byte {
//取出密文最后一个字节end
end := cipherText[len(cipherText)-1]
//删除填充
cipherText = cipherText[:len(cipherText)-int(end)]
return cipherText
}
//AES加密(ECB模式)
func AES_ECB_Encrypt(plainText []byte, key []byte) []byte {
//指定加密算法,返回一个AES算法的Block接口对象
block, err := aes.NewCipher(key)
if err != nil {
panic(err)
}
//进行填充
plainText = Padding(plainText, block.BlockSize())
//加密连续数据库
cipherText := make([]byte, len(plainText))
//存储每次加密的数据
tmpData := make([]byte, block.BlockSize())
//分组分块加密
for index := 0; index < len(plainText); index += block.BlockSize() {
block.Encrypt(tmpData, plainText[index:index+block.BlockSize()])
copy(cipherText[index:], tmpData)
}
//返回密文
return cipherText
}
//AES解密(ECB模式)
func AES_ECB_Decrypt(cipherText []byte, key []byte) []byte {
//指定解密算法,返回一个AES算法的Block接口对象
block, err := aes.NewCipher(key)
if err != nil {
panic(err)
}
//解密
plainText := make([]byte, len(cipherText))
//存储每次加密的数据
tmpData := make([]byte, block.BlockSize())
//分组分块解密
for index := 0; index < len(cipherText); index += block.BlockSize() {
block.Decrypt(tmpData, cipherText[index:index+block.BlockSize()])
copy(plainText[index:], tmpData)
}
//删除填充
plainText = UnPadding(plainText)
return plainText
}
输出:
go run .
go crypto aes-256-ecb demo/example.
加密后:7b30a4eda5f7497ddf1e2a5864031a199fdaff46146511dd964969971442ae93
MD5后为:8e6ada06f55cdb4dea5be922be612244
解密后为: https://const.net.cn
echo -n "https://const.net.cn" | openssl enc -aes-256-ecb -K 3132333435363738313233343536373831323334353637383132333435363738 |openssl dgst -md5
(stdin)= 8e6ada06f55cdb4dea5be922be612244
echo -n "https://const.net.cn" | openssl enc -aes-256-ecb -K 3132333435363738313233343536373831323334353637383132333435363738 |hexdump -e '32/1 "%02x" "\n"'
7b30a4eda5f7497ddf1e2a5864031a199fdaff46146511dd964969971442ae93