在 Go 中編組 PKCS8 私鑰
Go 1.5 缺乏編鑰組 PKCS8 私鑰的標準函數。但是,我們可以利用自訂解決方案。
為了編組 PKCS8 金鑰,我們定義一個表示 PKCS8 格式的自訂結構 pkcs8Key。它包括版本、私鑰演算法和實際私鑰位元組的欄位。
對於 RSA 金鑰,我們使用 rsa2pkcs8 函數將其轉換為 PKCS8 格式。此函數將版本設為 0,分配適當的私鑰演算法 OID,並封送 PKCS1 格式的私鑰。
<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>
此自訂解決方案可讓我們以程式設計方式封送 PKCS8 私鑰,即使 Go 缺乏用於此目的的官方函數。
以上是如何在 Go 1.5 編組 PKCS8 私鑰?的詳細內容。更多資訊請關注PHP中文網其他相關文章!