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
비트 단위로 지정된 피드백 크기입니다.
반환
암호가 해독된 일반 텍스트 데이터입니다.
예외
paddingMode
가 유효한 패딩 모드가 아닙니다.
또는
feedbackSizeInBits
가 양수가 아니거나 정수 바이트를 나타냅니다.
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
에 실행된 쓰기의 총 바이트 수입니다.
예외
paddingMode
가 유효한 패딩 모드가 아닙니다.
또는
feedbackSizeInBits
가 양수가 아니거나 정수 바이트를 나타냅니다.
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
인 경우
paddingMode
가 유효한 패딩 모드가 아닙니다.
또는
feedbackSizeInBits
가 양수가 아니거나 정수 바이트를 나타냅니다.
iv
가 잘못된 길이입니다. 호출자는 정확히 BlockSize 길이가 바이트(BlockSize / 8
)로 변환된 초기화 벡터를 전달해야 합니다.
설명
이 메서드의 동작은 에 의해 TryDecryptCfbCore(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Span<Byte>, PaddingMode, Int32, Int32)정의됩니다.
적용 대상
.NET