共用方式為


SymmetricAlgorithm.TryEncryptCbc 方法

定義

嘗試使用 CBC 模式搭配指定的填補模式,將數據加密至指定的緩衝區。

public bool TryEncryptCbc (ReadOnlySpan<byte> plaintext, ReadOnlySpan<byte> iv, Span<byte> destination, out int bytesWritten, System.Security.Cryptography.PaddingMode paddingMode = System.Security.Cryptography.PaddingMode.PKCS7);
member this.TryEncryptCbc : ReadOnlySpan<byte> * ReadOnlySpan<byte> * Span<byte> * int * System.Security.Cryptography.PaddingMode -> bool
Public Function TryEncryptCbc (plaintext As ReadOnlySpan(Of Byte), iv As ReadOnlySpan(Of Byte), destination As Span(Of Byte), ByRef bytesWritten As Integer, Optional paddingMode As PaddingMode = System.Security.Cryptography.PaddingMode.PKCS7) As Boolean

參數

plaintext
ReadOnlySpan<Byte>

要加密的資料。

iv
ReadOnlySpan<Byte>

初始化向量。

destination
Span<Byte>

要接收加密文字數據的緩衝區。

bytesWritten
Int32

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

paddingMode
PaddingMode

用來產生加密文字並在解密期間移除的填補模式。

傳回

true 如果 destination 夠大,無法接收加密的數據,則為 ,否則為 false

例外狀況

paddingMode 不是有效的填補模式。

iv 是不正確的長度。 呼叫端預期會傳遞長度完全相同 BlockSize 的初始化向量,並轉換成位元組 (BlockSize / 8) 。

無法成功加密純文字。

備註

這個方法的行為是由 TryEncryptCbcCore(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Span<Byte>, PaddingMode, Int32)所定義。

適用於