RSA.TryDecrypt 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
使用指定的填補模式,將結果寫入提供的緩衝區,以嘗試解密輸入資料。
public:
virtual bool TryDecrypt(ReadOnlySpan<System::Byte> data, Span<System::Byte> destination, System::Security::Cryptography::RSAEncryptionPadding ^ padding, [Runtime::InteropServices::Out] int % bytesWritten);
public virtual bool TryDecrypt (ReadOnlySpan<byte> data, Span<byte> destination, System.Security.Cryptography.RSAEncryptionPadding padding, out int bytesWritten);
abstract member TryDecrypt : ReadOnlySpan<byte> * Span<byte> * System.Security.Cryptography.RSAEncryptionPadding * int -> bool
override this.TryDecrypt : ReadOnlySpan<byte> * Span<byte> * System.Security.Cryptography.RSAEncryptionPadding * int -> bool
Public Overridable Function TryDecrypt (data As ReadOnlySpan(Of Byte), destination As Span(Of Byte), padding As RSAEncryptionPadding, ByRef bytesWritten As Integer) As Boolean
參數
- data
- ReadOnlySpan<Byte>
要解密的資料。
- padding
- RSAEncryptionPadding
填補模式。
- bytesWritten
- Int32
當這個方法傳回時,寫入 destination
的位元組總數。 這個參數會被視為未初始化。
傳回
如果 destination
的長度足以接收解密的資料,則為 true
;否則為 false
。
例外狀況
padding
為 null
。
備註
這個方法預設實作會呼叫 Decrypt(Byte[], RSAEncryptionPadding) ,並將結果 destination
複製到 。
衍生型別應該覆寫這個方法,以避免建立中繼陣列。
RSA 解密演算法一律會產生小於輸入的輸出,因此此方法永遠不會在 時destination.Length >= data.Length
傳回false
。