SymmetricAlgorithm.DecryptCfb 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
DecryptCfb(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, PaddingMode, Int32) |
使用具有指定填充模式和反馈大小的 CFB 模式解密数据。 |
DecryptCfb(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Span<Byte>, PaddingMode, Int32) |
使用具有指定填充模式和反馈大小的 CFB 模式将数据解密到指定的缓冲区中。 |
DecryptCfb(Byte[], Byte[], PaddingMode, Int32) |
使用具有指定填充模式和反馈大小的 CFB 模式解密数据。 |
DecryptCfb(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, PaddingMode, Int32)
- Source:
- SymmetricAlgorithm.cs
- Source:
- SymmetricAlgorithm.cs
- Source:
- SymmetricAlgorithm.cs
使用具有指定填充模式和反馈大小的 CFB 模式解密数据。
public byte[] DecryptCfb (ReadOnlySpan<byte> ciphertext, ReadOnlySpan<byte> iv, System.Security.Cryptography.PaddingMode paddingMode = System.Security.Cryptography.PaddingMode.None, int feedbackSizeInBits = 8);
member this.DecryptCfb : ReadOnlySpan<byte> * ReadOnlySpan<byte> * System.Security.Cryptography.PaddingMode * int -> byte[]
Public Function DecryptCfb (ciphertext As ReadOnlySpan(Of Byte), iv As ReadOnlySpan(Of Byte), Optional paddingMode As PaddingMode = System.Security.Cryptography.PaddingMode.None, Optional feedbackSizeInBits As Integer = 8) As Byte()
参数
- ciphertext
- ReadOnlySpan<Byte>
要解密的数据。
- iv
- ReadOnlySpan<Byte>
初始化向量。
- paddingMode
- PaddingMode
用于在解密期间生成密码文本和删除的填充模式。
- feedbackSizeInBits
- Int32
以位为单位指定的反馈大小。
返回
解密的纯文本数据。
例外
iv
长度不正确。 调用方应传递长度正好 BlockSize 的初始化向量,该向量转换为字节 (BlockSize / 8
) 。
注解
此方法的行为由 TryDecryptCfbCore(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Span<Byte>, PaddingMode, Int32, Int32)定义。
适用于
DecryptCfb(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Span<Byte>, PaddingMode, Int32)
- Source:
- SymmetricAlgorithm.cs
- Source:
- SymmetricAlgorithm.cs
- Source:
- SymmetricAlgorithm.cs
使用具有指定填充模式和反馈大小的 CFB 模式将数据解密到指定的缓冲区中。
public int DecryptCfb (ReadOnlySpan<byte> ciphertext, ReadOnlySpan<byte> iv, Span<byte> destination, System.Security.Cryptography.PaddingMode paddingMode = System.Security.Cryptography.PaddingMode.None, int feedbackSizeInBits = 8);
member this.DecryptCfb : ReadOnlySpan<byte> * ReadOnlySpan<byte> * Span<byte> * System.Security.Cryptography.PaddingMode * int -> int
Public Function DecryptCfb (ciphertext As ReadOnlySpan(Of Byte), iv As ReadOnlySpan(Of Byte), destination As Span(Of Byte), Optional paddingMode As PaddingMode = System.Security.Cryptography.PaddingMode.None, Optional feedbackSizeInBits As Integer = 8) As Integer
参数
- ciphertext
- ReadOnlySpan<Byte>
要解密的数据。
- iv
- ReadOnlySpan<Byte>
初始化向量。
- paddingMode
- PaddingMode
用于在解密期间生成密码文本和删除的填充模式。
- feedbackSizeInBits
- Int32
以位为单位指定的反馈大小。
返回
写入 destination
的总字节数。
例外
iv
长度不正确。 调用方应传递长度正好 BlockSize 的初始化向量,该向量转换为字节 (BlockSize / 8
) 。
-或-
中的 destination
缓冲区太小,无法保存纯文本数据。
注解
此方法的行为由 TryDecryptCfbCore(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Span<Byte>, PaddingMode, Int32, Int32)定义。
适用于
DecryptCfb(Byte[], Byte[], PaddingMode, Int32)
- Source:
- SymmetricAlgorithm.cs
- Source:
- SymmetricAlgorithm.cs
- Source:
- SymmetricAlgorithm.cs
使用具有指定填充模式和反馈大小的 CFB 模式解密数据。
public byte[] DecryptCfb (byte[] ciphertext, byte[] iv, System.Security.Cryptography.PaddingMode paddingMode = System.Security.Cryptography.PaddingMode.None, int feedbackSizeInBits = 8);
member this.DecryptCfb : byte[] * byte[] * System.Security.Cryptography.PaddingMode * int -> byte[]
Public Function DecryptCfb (ciphertext As Byte(), iv As Byte(), Optional paddingMode As PaddingMode = System.Security.Cryptography.PaddingMode.None, Optional feedbackSizeInBits As Integer = 8) As Byte()
参数
- ciphertext
- Byte[]
要解密的数据。
- iv
- Byte[]
初始化向量。
- paddingMode
- PaddingMode
用于在解密期间生成密码文本和删除的填充模式。
- feedbackSizeInBits
- Int32
以位为单位指定的反馈大小。
返回
解密的纯文本数据。
例外
ciphertext
或 iv
为 null
。
iv
长度不正确。 调用方应传递长度正好 BlockSize 的初始化向量,该向量转换为字节 (BlockSize / 8
) 。
注解
此方法的行为由 TryDecryptCfbCore(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Span<Byte>, PaddingMode, Int32, Int32)定义。