RSA.ImportRSAPrivateKey(ReadOnlySpan<Byte>, Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
解密後,從 PKCS#1 RSAPrivateKey 結構匯入公開/私密金鑰組,以取代這個物件的金鑰。
public:
virtual void ImportRSAPrivateKey(ReadOnlySpan<System::Byte> source, [Runtime::InteropServices::Out] int % bytesRead);
public virtual void ImportRSAPrivateKey (ReadOnlySpan<byte> source, out int bytesRead);
abstract member ImportRSAPrivateKey : ReadOnlySpan<byte> * int -> unit
override this.ImportRSAPrivateKey : ReadOnlySpan<byte> * int -> unit
Public Overridable Sub ImportRSAPrivateKey (source As ReadOnlySpan(Of Byte), ByRef bytesRead As Integer)
參數
- source
- ReadOnlySpan<Byte>
以 ASN.1-BER 編碼的 PKCS#1 RSAPrivateKey 結構位元組。
- bytesRead
- Int32
當此方法傳回時,會包含一個值,指出讀取自 source
的位元組數。 這個參數會被視為未初始化。
例外狀況
備註
這個方法僅支援 RSAPrivateKey 的二進位 (BER/CER/DER) 編碼。 如果值為Base64編碼或 PEM 文字格式,則呼叫端必須先以Base64譯碼內容,再呼叫此方法。