go语言中对数据进行crypto/x509加密和解密的示例代码

2023-06-01 00:00:00 示例 解密 中对

在Go语言中使用crypto/x509包加密和解密字符串数据,下面将使用EncryptPEMBlock和DecryptPEMBlock函数。

代码示例:

 package main
 import (
    "fmt"
    "crypto/rand"
    "crypto/x509"
    "os"
 )
 func main() {
 
    //RSA私钥
    blockType := "RSA PRIVATE KEY"
    password := []byte("password")
    // see http://golang.org/pkg/crypto/x509/#pkg-constants
    cipherType := x509.PEMCipherAES256
    EncryptedPEMBlock, err := x509.EncryptPEMBlock(rand.Reader,
                        blockType,
                        []byte("secret message"),
                        password,
                        cipherType)
    if err != nil {
       fmt.Println(err)
       os.Exit(1)
    }
   
    //检查加密是否成功
    if !x509.IsEncryptedPEMBlock(EncryptedPEMBlock) {
       fmt.Println("PEM 块未加密!")
       os.Exit(1)
    }
   
    if EncryptedPEMBlock.Type != blockType {
       fmt.Println("块类型错误!")
       os.Exit(1)
    }
   
    fmt.Printf("加密块 \n%v\n", EncryptedPEMBlock)
    fmt.Printf("加密块头信息 : %v\n", EncryptedPEMBlock.Headers)
   
    DecryptedPEMBlock, err := x509.DecryptPEMBlock(EncryptedPEMBlock, password)
    if err != nil {
       fmt.Println(err)
       os.Exit(1)
    }
   
    fmt.Printf("解密的块消息是 :  \n%s\n", DecryptedPEMBlock)
 }


输出:

加密块 &{RSA PRIVATE KEY map[Proc-Type:4,ENCRYPTED DEK-Info:AES-256-CBC,9f08b2afcf44a3115f8eacc78600a108] [133 90 249 15 68 167 149 212 114 250 51 248 47 5 137 144]
加密块头信息:map[Proc-Type:4,ENCRYPTED DEK-Info:AES-256-CBC,9f08b2afcf44a3115f8eacc78600a108]
解密的块消息是:秘密消息

相关文章