标签 crypto 下的文章

“”

高级加密标准(英语:Advanced Encryption Standard,缩写:AES),又称Rijndael加密法,是美国联邦政府采用的一种区块加密标准。这个标准用来替代原先的DES,已经被多方分析且广为全世界所使用。经过五年的甄选流程,高级加密标准由美国国家标准与技术研究院(NIST)于2001年11月26日发布于FIPS PUB 197,并在2002年5月26日成为有效的标准。现在,高级加密标准已然成为对称密钥加密中最流行的算法之一。
aes-192密钥的长度为24字节,aes-256密钥的长度为32字节,aes-128密码的长度为16字节。aes-ctr需要密钥就行和iv,另外aes-ctr不需要填充。
计算器模式(Counter (CTR))
代码:

package main

import (
    "bytes"
    "crypto/aes"
    "crypto/cipher"
    "crypto/md5"
    "fmt"
)

func main() {
    fmt.Println("go crypto aes-192-ctr demo/example.")
    message := []byte("https://const.net.cn")
    //指定密钥
    key := []byte("123456781234567812345678")
    //加密
    cipherText := AES_CTR_Encrypt(message, key)
    fmt.Printf("加密后:%x\n", cipherText)
    fmt.Printf("MD5后为:%x\n", md5.Sum(cipherText))
    //解密
    plainText := AES_CTR_Decrypt(cipherText, key)
    fmt.Println("解密后为:", string(plainText))
}

//AES加密(CTR模式)
func AES_CTR_Encrypt(plainText []byte, key []byte) []byte {
    //指定加密算法,返回一个AES算法的Block接口对象
    block, err := aes.NewCipher(key)
    if err != nil {
        panic(err)
    }
    //指定初始向量vi,长度和block的块尺寸一致
    iv := []byte("1234567812345678")
    //指定分组模式,返回一个BlockMode接口对象
    blockMode := cipher.NewCTR(block, iv)
    //加密连续数据库
    cipherText := make([]byte, len(plainText))
    blockMode.XORKeyStream(cipherText, plainText)
    //返回密文
    return cipherText
}

//AES解密(CTR模式)
func AES_CTR_Decrypt(cipherText []byte, key []byte) []byte {
    //指定解密算法,返回一个AES算法的Block接口对象
    block, err := aes.NewCipher(key)
    if err != nil {
        panic(err)
    }
    //指定初始化向量IV,和加密的一致
    iv := []byte("1234567812345678")
    //指定分组模式,返回一个BlockMode接口对象
    blockMode := cipher.NewCTR(block, iv)
    //解密
    plainText := make([]byte, len(cipherText))
    blockMode.XORKeyStream(plainText, cipherText)
    return plainText
}

输出:

go run .
go crypto aes-192-ctr demo/example.
加密后:adc0a51d488b4143d89f55c7abb6b64aac8fed06
MD5后为:c6b9e8cb1e32eb9bbf14f04a915ef89d
解密后为: https://const.net.cn

php openssl 验证:

<?php

function aes_encrypt($text, $key) {
    $cipher_name = "aes-192-ctr";
    $iv = pack("H*", "31323334353637383132333435363738");
    $key = pack("H*", $key);
    $encrypted = openssl_encrypt($text, $cipher_name, $key, OPENSSL_RAW_DATA, $iv);
    echo "cipher_name = ".$cipher_name."\n";
    echo "plaintext = ".$text."\n";
    echo "md5 = ".md5($encrypted)."\n";
    return bin2hex($encrypted);
  }

  echo "aes-192-ctr cipher_text = ".aes_encrypt('https://const.net.cn', '313233343536373831323334353637383132333435363738')."\n";
  
?>

验证输出:

php7.4 php/openssl.php 
cipher_name = aes-192-ctr
plaintext = https://const.net.cn
md5 = c6b9e8cb1e32eb9bbf14f04a915ef89d
aes-192-ctr cipher_text = adc0a51d488b4143d89f55c7abb6b64aac8fed06

高级加密标准(英语:Advanced Encryption Standard,缩写:AES),又称Rijndael加密法,是美国联邦政府采用的一种区块加密标准。这个标准用来替代原先的DES,已经被多方分析且广为全世界所使用。经过五年的甄选流程,高级加密标准由美国国家标准与技术研究院(NIST)于2001年11月26日发布于FIPS PUB 197,并在2002年5月26日成为有效的标准。现在,高级加密标准已然成为对称密钥加密中最流行的算法之一。
aes-192密钥的长度为24字节,aes-256密钥的长度为32字节,aes-128密码的长度为16字节。aes-ctr需要密钥就行和iv,另外aes-ctr不需要填充。
计算器模式(Counter (CTR))
代码:

package main

import (
    "bytes"
    "crypto/aes"
    "crypto/cipher"
    "crypto/md5"
    "fmt"
)

func main() {
    fmt.Println("go crypto aes-256-ctr demo/example.")
    message := []byte("https://const.net.cn")
    //指定密钥
    key := []byte("12345678123456781234567812345678")
    //加密
    cipherText := AES_CTR_Encrypt(message, key)
    fmt.Printf("加密后:%x\n", cipherText)
    fmt.Printf("MD5后为:%x\n", md5.Sum(cipherText))
    //解密
    plainText := AES_CTR_Decrypt(cipherText, key)
    fmt.Println("解密后为:", string(plainText))
}

//AES加密(CTR模式)
func AES_CTR_Encrypt(plainText []byte, key []byte) []byte {
    //指定加密算法,返回一个AES算法的Block接口对象
    block, err := aes.NewCipher(key)
    if err != nil {
        panic(err)
    }
    //指定初始向量vi,长度和block的块尺寸一致
    iv := []byte("1234567812345678")
    //指定分组模式,返回一个BlockMode接口对象
    blockMode := cipher.NewCTR(block, iv)
    //加密连续数据库
    cipherText := make([]byte, len(plainText))
    blockMode.XORKeyStream(cipherText, plainText)
    //返回密文
    return cipherText
}

//AES解密(CTR模式)
func AES_CTR_Decrypt(cipherText []byte, key []byte) []byte {
    //指定解密算法,返回一个AES算法的Block接口对象
    block, err := aes.NewCipher(key)
    if err != nil {
        panic(err)
    }
    //指定初始化向量IV,和加密的一致
    iv := []byte("1234567812345678")
    //指定分组模式,返回一个BlockMode接口对象
    blockMode := cipher.NewCTR(block, iv)
    //解密
    plainText := make([]byte, len(cipherText))
    blockMode.XORKeyStream(plainText, cipherText)
    return plainText
}

输出:

go run .
go crypto aes-256-ctr demo/example.
加密后:41caba6528fa08bee813b8dc9ceb0ed82f7d1c2e
MD5后为:9762baaadc05c4871786a6452bcfe70f
解密后为: https://const.net.cn

php openssl 验证

<?php

function aes_encrypt($text, $key) {
    $cipher_name = "aes-256-ctr";
    $iv = pack("H*", "31323334353637383132333435363738");
    $key = pack("H*", $key);
    $encrypted = openssl_encrypt($text, $cipher_name, $key, OPENSSL_RAW_DATA, $iv);
    echo "cipher_name = ".$cipher_name."\n";
    echo "plaintext = ".$text."\n";
    echo "md5 = ".md5($encrypted)."\n";
    return bin2hex($encrypted);
  }

  echo "aes-256-ctr cipher_text = ".aes_encrypt('https://const.net.cn', '3132333435363738313233343536373831323334353637383132333435363738')."\n";
  
?>

验证输出:

php7.4 php/openssl.php 
cipher_name = aes-256-ctr
plaintext = https://const.net.cn
md5 = 9762baaadc05c4871786a6452bcfe70f
aes-256-ctr cipher_text = 41caba6528fa08bee813b8dc9ceb0ed82f7d1c2e

高级加密标准(英语:Advanced Encryption Standard,缩写:AES),又称Rijndael加密法,是美国联邦政府采用的一种区块加密标准。这个标准用来替代原先的DES,已经被多方分析且广为全世界所使用。经过五年的甄选流程,高级加密标准由美国国家标准与技术研究院(NIST)于2001年11月26日发布于FIPS PUB 197,并在2002年5月26日成为有效的标准。现在,高级加密标准已然成为对称密钥加密中最流行的算法之一。
aes-192密钥的长度为24字节,aes-256密钥的长度为32字节,aes-128密码的长度为16字节。aes-cfb需要密钥就行和iv,另外aes-cfb不需要填充。
密码反馈模式(Cipher FeedBack (CFB))
代码:

package main

import (
    "bytes"
    "crypto/aes"
    "crypto/cipher"
    "crypto/md5"
    "fmt"
)

func main() {
    fmt.Println("go crypto aes-128-cfb demo/example.")
    message := []byte("https://const.net.cn")
    //指定密钥
    key := []byte("1234567812345678")
    //加密
    cipherText := AES_CFB_Encrypt(message, key)
    fmt.Printf("加密后:%x\n", cipherText)
    fmt.Printf("MD5后为:%x\n", md5.Sum(cipherText))
    //解密
    plainText := AES_CFB_Decrypt(cipherText, key)
    fmt.Println("解密后为:", string(plainText))
}

//AES加密(CFB模式)
func AES_CFB_Encrypt(plainText []byte, key []byte) []byte {
    //指定加密算法,返回一个AES算法的Block接口对象
    block, err := aes.NewCipher(key)
    if err != nil {
        panic(err)
    }
    //指定初始向量vi,长度和block的块尺寸一致
    iv := []byte("1234567812345678")
    //指定分组模式,返回一个BlockMode接口对象
    blockMode := cipher.NewCFBEncrypter(block, iv)
    //加密连续数据库
    cipherText := make([]byte, len(plainText))
    blockMode.XORKeyStream(cipherText, plainText)
    //返回密文
    return cipherText
}

//AES解密(CFB模式)
func AES_CFB_Decrypt(cipherText []byte, key []byte) []byte {
    //指定解密算法,返回一个AES算法的Block接口对象
    block, err := aes.NewCipher(key)
    if err != nil {
        panic(err)
    }
    //指定初始化向量IV,和加密的一致
    iv := []byte("1234567812345678")
    //指定分组模式,返回一个BlockMode接口对象
    blockMode := cipher.NewCFBDecrypter(block, iv)
    //解密
    plainText := make([]byte, len(cipherText))
    blockMode.XORKeyStream(plainText, cipherText)
    return plainText
}

输出:

go run .
go crypto aes-128-cfb demo/example.
加密后:05d86826947dd5cf59a0e21be5ca4685bf022596
MD5后为:cb4c025d698eb42404df343a0f17cc22
解密后为: https://const.net.cn

php openssl 验证:

<?php

function aes_encrypt($text, $key) {
    $cipher_name = "aes-128-cfb";
    $iv = pack("H*", "31323334353637383132333435363738");
    $key = pack("H*", $key);
    $encrypted = openssl_encrypt($text, $cipher_name, $key, OPENSSL_RAW_DATA, $iv);
    echo "cipher_name = ".$cipher_name."\n";
    echo "plaintext = ".$text."\n";
    echo "md5 = ".md5($encrypted)."\n";
    return bin2hex($encrypted);
  }

  echo "aes-128-cfb cipher_text = ".aes_encrypt('https://const.net.cn', '31323334353637383132333435363738')."\n";
  
?>

验证输出:

php7.4 php/openssl.php 
cipher_name = aes-128-cfb
plaintext = https://const.net.cn
md5 = cb4c025d698eb42404df343a0f17cc22
aes-128-cfb cipher_text = 05d86826947dd5cf59a0e21be5ca4685bf022596

高级加密标准(英语:Advanced Encryption Standard,缩写:AES),又称Rijndael加密法,是美国联邦政府采用的一种区块加密标准。这个标准用来替代原先的DES,已经被多方分析且广为全世界所使用。经过五年的甄选流程,高级加密标准由美国国家标准与技术研究院(NIST)于2001年11月26日发布于FIPS PUB 197,并在2002年5月26日成为有效的标准。现在,高级加密标准已然成为对称密钥加密中最流行的算法之一。
aes-192密钥的长度为24字节,aes-256密钥的长度为32字节,aes-128密码的长度为16字节。aes-cfb需要密钥就行和iv,另外aes-cfb不需要填充。
密码反馈模式(Cipher FeedBack (CFB))
代码:

package main

import (
    "bytes"
    "crypto/aes"
    "crypto/cipher"
    "crypto/md5"
    "fmt"
)

func main() {
    fmt.Println("go crypto aes-192-cfb demo/example.")
    message := []byte("https://const.net.cn")
    //指定密钥
    key := []byte("123456781234567812345678")
    //加密
    cipherText := AES_CFB_Encrypt(message, key)
    fmt.Printf("加密后:%x\n", cipherText)
    fmt.Printf("MD5后为:%x\n", md5.Sum(cipherText))
    //解密
    plainText := AES_CFB_Decrypt(cipherText, key)
    fmt.Println("解密后为:", string(plainText))
}

//AES加密(CFB模式)
func AES_CFB_Encrypt(plainText []byte, key []byte) []byte {
    //指定加密算法,返回一个AES算法的Block接口对象
    block, err := aes.NewCipher(key)
    if err != nil {
        panic(err)
    }
    //指定初始向量vi,长度和block的块尺寸一致
    iv := []byte("1234567812345678")
    //指定分组模式,返回一个BlockMode接口对象
    blockMode := cipher.NewCFBEncrypter(block, iv)
    //加密连续数据库
    cipherText := make([]byte, len(plainText))
    blockMode.XORKeyStream(cipherText, plainText)
    //返回密文
    return cipherText
}

//AES解密(CFB模式)
func AES_CFB_Decrypt(cipherText []byte, key []byte) []byte {
    //指定解密算法,返回一个AES算法的Block接口对象
    block, err := aes.NewCipher(key)
    if err != nil {
        panic(err)
    }
    //指定初始化向量IV,和加密的一致
    iv := []byte("1234567812345678")
    //指定分组模式,返回一个BlockMode接口对象
    blockMode := cipher.NewCFBDecrypter(block, iv)
    //解密
    plainText := make([]byte, len(cipherText))
    blockMode.XORKeyStream(plainText, cipherText)
    return plainText
}

输出:

go run .
go crypto aes-192-cfb demo/example.
加密后:adc0a51d488b4143d89f55c7abb6b64a28758175
MD5后为:ebab23d62fefebf2464fe768f27b010c
解密后为: https://const.net.cn

php openssl 验证:

<?php

function aes_encrypt($text, $key) {
    $cipher_name = "aes-192-cfb";
    $iv = pack("H*", "31323334353637383132333435363738");
    $key = pack("H*", $key);
    $encrypted = openssl_encrypt($text, $cipher_name, $key, OPENSSL_RAW_DATA, $iv);
    echo "cipher_name = ".$cipher_name."\n";
    echo "plaintext = ".$text."\n";
    echo "md5 = ".md5($encrypted)."\n";
    return bin2hex($encrypted);
  }

  echo "aes-192-cfb cipher_text = ".aes_encrypt('https://const.net.cn', '313233343536373831323334353637383132333435363738')."\n";
  
?>

验证输出:

php7.4 php/openssl.php 
cipher_name = aes-192-cfb
plaintext = https://const.net.cn
md5 = ebab23d62fefebf2464fe768f27b010c
aes-192-cfb cipher_text = adc0a51d488b4143d89f55c7abb6b64a28758175

高级加密标准(英语:Advanced Encryption Standard,缩写:AES),又称Rijndael加密法,是美国联邦政府采用的一种区块加密标准。这个标准用来替代原先的DES,已经被多方分析且广为全世界所使用。经过五年的甄选流程,高级加密标准由美国国家标准与技术研究院(NIST)于2001年11月26日发布于FIPS PUB 197,并在2002年5月26日成为有效的标准。现在,高级加密标准已然成为对称密钥加密中最流行的算法之一。
aes-192密钥的长度为24字节,aes-256密钥的长度为32字节,aes-128密码的长度为16字节。aes-cfb需要密钥就行和iv,另外aes-cfb不需要填充。
密码反馈模式(Cipher FeedBack (CFB))
代码:

package main

import (
    "bytes"
    "crypto/aes"
    "crypto/cipher"
    "crypto/md5"
    "fmt"
)

func main() {
    fmt.Println("go crypto aes-256-cfb demo/example.")
    message := []byte("https://const.net.cn")
    //指定密钥
    key := []byte("12345678123456781234567812345678")
    //加密
    cipherText := AES_CFB_Encrypt(message, key)
    fmt.Printf("加密后:%x\n", cipherText)
    fmt.Printf("MD5后为:%x\n", md5.Sum(cipherText))
    //解密
    plainText := AES_CFB_Decrypt(cipherText, key)
    fmt.Println("解密后为:", string(plainText))
}

//AES加密(CFB模式)
func AES_CFB_Encrypt(plainText []byte, key []byte) []byte {
    //指定加密算法,返回一个AES算法的Block接口对象
    block, err := aes.NewCipher(key)
    if err != nil {
        panic(err)
    }
    //指定初始向量vi,长度和block的块尺寸一致
    iv := []byte("1234567812345678")
    //指定分组模式,返回一个BlockMode接口对象
    blockMode := cipher.NewCFBEncrypter(block, iv)
    //加密连续数据库
    cipherText := make([]byte, len(plainText))
    blockMode.XORKeyStream(cipherText, plainText)
    //返回密文
    return cipherText
}

//AES解密(CFB模式)
func AES_CFB_Decrypt(cipherText []byte, key []byte) []byte {
    //指定解密算法,返回一个AES算法的Block接口对象
    block, err := aes.NewCipher(key)
    if err != nil {
        panic(err)
    }
    //指定初始化向量IV,和加密的一致
    iv := []byte("1234567812345678")
    //指定分组模式,返回一个BlockMode接口对象
    blockMode := cipher.NewCFBDecrypter(block, iv)
    //解密
    plainText := make([]byte, len(cipherText))
    blockMode.XORKeyStream(plainText, cipherText)
    return plainText
}

输出:

go run .
go crypto aes-256-cfb demo/example.
加密后:41caba6528fa08bee813b8dc9ceb0ed8923eea0e
MD5后为:f1700726964d3392505194160ebea99d
解密后为: https://const.net.cn

php openssl 验证

<?php

function aes_encrypt($text, $key) {
    $cipher_name = "aes-256-cfb";
    $iv = pack("H*", "31323334353637383132333435363738");
    $key = pack("H*", $key);
    $encrypted = openssl_encrypt($text, $cipher_name, $key, OPENSSL_RAW_DATA, $iv);
    echo "cipher_name = ".$cipher_name."\n";
    echo "plaintext = ".$text."\n";
    echo "md5 = ".md5($encrypted)."\n";
    return bin2hex($encrypted);
  }

  echo "aes-256-cfb cipher_text = ".aes_encrypt('https://const.net.cn', '3132333435363738313233343536373831323334353637383132333435363738')."\n";
  
?>

验证输出:

php7.4 php/openssl.php 
cipher_name = aes-256-cfb
plaintext = https://const.net.cn
md5 = f1700726964d3392505194160ebea99d
aes-256-cfb cipher_text = 41caba6528fa08bee813b8dc9ceb0ed8923eea0e