go和js使用rsa加密

时间:2024-01-28 16:46:35
【文件属性】:

文件名称:go和js使用rsa加密

文件大小:21KB

文件格式:PDF

更新时间:2024-01-28 16:46:35

go js rsa

//生成公钥、私钥文件 func GenRsaKey(bits int) error { // 生成私钥文件 privateKey, err := rsa.GenerateKey(rand.Reader, bits) if err != nil { return err } derStream := x509.MarshalPKCS1PrivateKey(privateKey) block := &pem.Block{ Type: RSA PRIVATE KEY, Bytes: derStream, } file, err := os.Create(./pem


网友评论