Go での PKCS8 秘密鍵のマーシャリング
Go 1.5 で PKCS8 秘密鍵をマーシャリングできますか?具体的には、PKCS8 の x509.MarshalPKCS1PrivateKey に似たメソッドはありますか?
解決策:
このタスクには標準関数がないにもかかわらず、カスタム ソリューションが利用可能です:
<code class="go">import ( "crypto/rsa" "crypto/asn1" "crypto/x509" ) 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>
以上がGo 1.5 で PKCS8 秘密キーをマーシャルするにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。