背景: RSA 金鑰廣泛應用於密碼學中的安全通訊。在實作基於 RSA 的系統時,通常需要從檔案載入現有私鑰以進行身份驗證或簽署。但是,要找到有關如何基於文件中預先產生的密鑰建立密鑰結構的全面說明可能很困難。
解決方案:要從檔案中讀取RSA 金鑰,您需要可以使用以下步驟:
選項1:PKCS#1 編碼金鑰
選項2:PKCS#8 編碼金鑰
範例程式碼:
// PKCS#1 Encoded Key Example package main import ( "crypto/rsa" "crypto/x509" "encoding/pem" ) func main() { keyPEMString := `-----BEGIN RSA PRIVATE KEY----- ... (Your PKCS#1 key here) -----END RSA PRIVATE KEY-----` keyData, _ := pem.Decode([]byte(keyPEMString)) key, _ := x509.ParsePKCS1PrivateKey(keyData.Bytes) fmt.Println(key.N) // Access the RSA modulus } // PKCS#8 Encoded Key Example package main import ( "crypto/rsa" "crypto/x509" "encoding/pem" ) func main() { keyPEMString := `-----BEGIN PRIVATE KEY----- ... (Your PKCS#8 key here) -----END PRIVATE KEY-----` keyData, _ := pem.Decode([]byte(keyPEMString)) key, _ := x509.ParsePKCS8PrivateKey(keyData.Bytes) rsaKey := key.(*rsa.PrivateKey) fmt.Println(rsaKey.N) // Access the RSA modulus }
透過遵循這些方法,您可以成功從檔案中讀取並實例化RSA 金鑰,從而使您能夠在應用程式中執行基於RSA 的操作。
以上是如何在 Go 中從檔案中讀取 RSA 金鑰?的詳細內容。更多資訊請關注PHP中文網其他相關文章!