了解 Openssl 命令
提供的 OpenSSL 命令生成 RSA 密钥配对并将私钥和公钥保存到单独的文件中。它需要两个参数:
实施于Go
要在 Go 中复制此功能,我们需要执行以下步骤:
Go代码:
package main import ( "crypto/rand" "crypto/rsa" "crypto/x509" "encoding/pem" "fmt" "io/ioutil" ) func main() { // Define filename and bit size filename := "key" bitSize := 4096 // Generate RSA key key, err := rsa.GenerateKey(rand.Reader, bitSize) if err != nil { panic(err) } // Extract public key pub := key.Public() // Convert to PKCS#1 DER format keyPEM := pem.EncodeToMemory( &pem.Block{ Type: "RSA PRIVATE KEY", Bytes: x509.MarshalPKCS1PrivateKey(key), }, ) pubPEM := pem.EncodeToMemory( &pem.Block{ Type: "RSA PUBLIC KEY", Bytes: x509.MarshalPKCS1PublicKey(pub.(*rsa.PublicKey)), }, ) // Write keys to files err = ioutil.WriteFile(filename+".rsa", keyPEM, 0700) if err != nil { panic(err) } err = ioutil.WriteFile(filename+".rsa.pub", pubPEM, 0755) if err != nil { panic(err) } fmt.Println("RSA key pair generated and written to files.") }
输出:
程序将创建两个包含以下内容的文件:
key.rsa:
-----BEGIN RSA PRIVATE KEY----- ... -----END RSA PRIVATE KEY-----
key.rsa.pub:
-----BEGIN RSA PUBLIC KEY----- ... -----END RSA PUBLIC KEY-----
以上是如何在 Go 中生成 RSA 密钥对:与 OpenSSL 的比较?的详细内容。更多信息请关注PHP中文网其他相关文章!