SymmetricAlgorithm.DecryptCbc 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
DecryptCbc(Byte[], Byte[], PaddingMode) |
使用 CBC 模式與指定的填補模式解密數據。 |
DecryptCbc(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, PaddingMode) |
使用 CBC 模式與指定的填補模式解密數據。 |
DecryptCbc(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Span<Byte>, PaddingMode) |
使用 CBC 模式搭配指定的填補模式,將數據解密至指定的緩衝區。 |
DecryptCbc(Byte[], Byte[], PaddingMode)
使用 CBC 模式與指定的填補模式解密數據。
public byte[] DecryptCbc (byte[] ciphertext, byte[] iv, System.Security.Cryptography.PaddingMode paddingMode = System.Security.Cryptography.PaddingMode.PKCS7);
member this.DecryptCbc : byte[] * byte[] * System.Security.Cryptography.PaddingMode -> byte[]
Public Function DecryptCbc (ciphertext As Byte(), iv As Byte(), Optional paddingMode As PaddingMode = System.Security.Cryptography.PaddingMode.PKCS7) As Byte()
參數
- ciphertext
- Byte[]
要解密的資料。
- iv
- Byte[]
初始化向量。
- paddingMode
- PaddingMode
用來產生加密文字並在解密期間移除的填補模式。
傳回
解密的純文本數據。
例外狀況
ciphertext
或 iv
為 null
。
paddingMode
不是有效的填補模式。
iv
是不正確的長度。 呼叫端預期會傳遞長度完全相同 BlockSize 的初始化向量,並轉換成位元組 (BlockSize / 8
) 。
無法成功解密加密文字。
備註
這個方法的行為是由 TryDecryptCbcCore(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Span<Byte>, PaddingMode, Int32)所定義。
適用於
DecryptCbc(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, PaddingMode)
使用 CBC 模式與指定的填補模式解密數據。
public byte[] DecryptCbc (ReadOnlySpan<byte> ciphertext, ReadOnlySpan<byte> iv, System.Security.Cryptography.PaddingMode paddingMode = System.Security.Cryptography.PaddingMode.PKCS7);
member this.DecryptCbc : ReadOnlySpan<byte> * ReadOnlySpan<byte> * System.Security.Cryptography.PaddingMode -> byte[]
Public Function DecryptCbc (ciphertext As ReadOnlySpan(Of Byte), iv As ReadOnlySpan(Of Byte), Optional paddingMode As PaddingMode = System.Security.Cryptography.PaddingMode.PKCS7) As Byte()
參數
- ciphertext
- ReadOnlySpan<Byte>
要解密的資料。
- iv
- ReadOnlySpan<Byte>
初始化向量。
- paddingMode
- PaddingMode
用來產生加密文字並在解密期間移除的填補模式。
傳回
解密的純文本數據。
例外狀況
paddingMode
不是有效的填補模式。
iv
是不正確的長度。 呼叫端預期會傳遞長度完全相同 BlockSize 的初始化向量,並轉換成位元組 (BlockSize / 8
) 。
無法成功解密加密文字。
備註
這個方法的行為是由 TryDecryptCbcCore(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Span<Byte>, PaddingMode, Int32)所定義。
適用於
DecryptCbc(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Span<Byte>, PaddingMode)
使用 CBC 模式搭配指定的填補模式,將數據解密至指定的緩衝區。
public int DecryptCbc (ReadOnlySpan<byte> ciphertext, ReadOnlySpan<byte> iv, Span<byte> destination, System.Security.Cryptography.PaddingMode paddingMode = System.Security.Cryptography.PaddingMode.PKCS7);
member this.DecryptCbc : ReadOnlySpan<byte> * ReadOnlySpan<byte> * Span<byte> * System.Security.Cryptography.PaddingMode -> int
Public Function DecryptCbc (ciphertext As ReadOnlySpan(Of Byte), iv As ReadOnlySpan(Of Byte), destination As Span(Of Byte), Optional paddingMode As PaddingMode = System.Security.Cryptography.PaddingMode.PKCS7) As Integer
參數
- ciphertext
- ReadOnlySpan<Byte>
要解密的資料。
- iv
- ReadOnlySpan<Byte>
初始化向量。
- paddingMode
- PaddingMode
用來產生加密文字並在解密期間移除的填補模式。
傳回
寫入的位元組總數 destination
例外狀況
paddingMode
不是有效的填補模式。
iv
是不正確的長度。 呼叫端預期會傳遞長度完全相同 BlockSize 的初始化向量,並轉換成位元組 (BlockSize / 8
) 。
無法成功解密加密文字。
中的 destination
緩衝區太小,無法保存純文字數據。
備註
這個方法的行為是由 TryDecryptCbcCore(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Span<Byte>, PaddingMode, Int32)所定義。