SymmetricAlgorithm.TryDecryptEcbCore 方法

定義

當在派生類別中覆寫時,會嘗試將資料解密到指定的緩衝區,使用 ECB 模式並搭配指定的填充模式。

protected:
 virtual bool TryDecryptEcbCore(ReadOnlySpan<System::Byte> ciphertext, Span<System::Byte> destination, System::Security::Cryptography::PaddingMode paddingMode, [Runtime::InteropServices::Out] int % bytesWritten);
protected virtual bool TryDecryptEcbCore(ReadOnlySpan<byte> ciphertext, Span<byte> destination, System.Security.Cryptography.PaddingMode paddingMode, out int bytesWritten);
abstract member TryDecryptEcbCore : ReadOnlySpan<byte> * Span<byte> * System.Security.Cryptography.PaddingMode * int -> bool
override this.TryDecryptEcbCore : ReadOnlySpan<byte> * Span<byte> * System.Security.Cryptography.PaddingMode * int -> bool
Protected Overridable Function TryDecryptEcbCore (ciphertext As ReadOnlySpan(Of Byte), destination As Span(Of Byte), paddingMode As PaddingMode, ByRef bytesWritten As Integer) As Boolean

參數

ciphertext
ReadOnlySpan<Byte>

要解密的資料。

destination
Span<Byte>

緩衝區用來接收明文資料。

paddingMode
PaddingMode

填充模式用於產生密文並在解密時移除。

bytesWritten
Int32

當此方法回傳時,包含寫入 destination的總位元組數。

傳回

true 如果 destination 足夠大以接收解密資料;否則, false

例外狀況

派生類別尚未提供實作。

備註

衍生類別必須覆蓋此限制並提供實作。

適用於