How Can I Marshal PKCS8 Private Keys in Go 1.5?

DDD
Release: 2024-10-26 16:03:30
Original
206 people have browsed it

How Can I Marshal PKCS8 Private Keys in Go 1.5?

Marshalling PKCS8 Private Keys in Go

The question arises regarding the availability of a method to marshal PKCS8 private keys in Go 1.5. A similar function, such as x509.MarshalPKCS1PrivateKey, is sought after.

Custom Solution

Interestingly, there is no standard function for marshalling PKCS8 private keys in Go. However, a custom solution is provided below:

<code class="go">type pkcs8Key struct {
    Version             int
    PrivateKeyAlgorithm []asn1.ObjectIdentifier
    PrivateKey          []byte
}

func rsa2pkcs8(key *rsa.PrivateKey) ([]byte, error) {
    var pkey pkcs8Key
    pkey.Version = 0
    pkey.PrivateKeyAlgorithm = make([]asn1.ObjectIdentifier, 1)
    pkey.PrivateKeyAlgorithm[0] = asn1.ObjectIdentifier{1, 2, 840, 113549, 1, 1, 1}
    pkey.PrivateKey = x509.MarshalPKCS1PrivateKey(key)

    return asn1.Marshal(pkey)
}</code>
Copy after login

This custom function, rsa2pkcs8, can be used to marshal PKCS8 private keys in Go 1.5.

The above is the detailed content of How Can I Marshal PKCS8 Private Keys in Go 1.5?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!