SymmetricAlgorithm.TryDecryptCfb 方法

定义

尝试将数据解密到指定的缓冲区,使用具有指定填充模式和反馈大小的 CFB 模式。

public bool TryDecryptCfb (ReadOnlySpan<byte> ciphertext, ReadOnlySpan<byte> iv, Span<byte> destination, out int bytesWritten, System.Security.Cryptography.PaddingMode paddingMode = System.Security.Cryptography.PaddingMode.None, int feedbackSizeInBits = 8);
member this.TryDecryptCfb : ReadOnlySpan<byte> * ReadOnlySpan<byte> * Span<byte> * int * System.Security.Cryptography.PaddingMode * int -> bool
Public Function TryDecryptCfb (ciphertext 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.None, Optional feedbackSizeInBits As Integer = 8) As Boolean

参数

ciphertext
ReadOnlySpan<Byte>

要解密的数据。

iv
ReadOnlySpan<Byte>

初始化向量。

destination
Span<Byte>

用于接收纯文本数据的缓冲区。

bytesWritten
Int32

此方法返回时,包含写入 到 destination的字节总数。

paddingMode
PaddingMode

用于生成密码文本并在解密期间删除的填充模式。

feedbackSizeInBits
Int32

反馈大小(以位为单位)。

返回

true 如果 destination 大小足以接收解密的数据,则为 ;否则为 false

例外

paddingMode 不是有效的填充模式。

-或-

feedbackSizeInBits 不为正或表示整数字节。

iv 长度不正确。 调用方应传递长度恰好 BlockSize 转换为字节 (BlockSize / 8) 的初始化向量。

无法成功解密密码文本。

-或-

feedbackSizeInBits 对于算法无效。

注解

此方法的行为由 TryDecryptCfbCore(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Span<Byte>, PaddingMode, Int32, Int32)定义。

适用于