SymmetricAlgorithm.TryEncryptCfb 메서드

정의

지정된 패딩 모드 및 피드백 크기가 있는 CFB 모드를 사용하여 지정된 버퍼로 데이터를 암호화하려고 시도합니다.

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

매개 변수

plaintext
ReadOnlySpan<Byte>

암호화할 데이터입니다.

iv
ReadOnlySpan<Byte>

초기화 벡터입니다.

destination
Span<Byte>

암호 텍스트 데이터를 받을 버퍼입니다.

bytesWritten
Int32

이 메서드가 반환되면 .에 기록 destination된 총 바이트 수가 포함됩니다.

paddingMode
PaddingMode

암호 텍스트를 생성하고 암호 해독 중에 제거하는 데 사용되는 패딩 모드입니다.

feedbackSizeInBits
Int32

비트로 지정된 피드백 크기입니다.

반환

Boolean

true if destination was large enough to receive the encrypted data; otherwise, false.

예외

paddingMode 가 유효한 패딩 모드가 아닙니다.

또는

feedbackSizeInBits 가 양수가 아니거나 정수 바이트를 나타냅니다.

iv 가 잘못된 길이입니다. 호출자는 정확히 BlockSize 길이가 바이트(BlockSize/8)로 변환된 초기화 벡터를 전달해야 합니다.

일반 텍스트를 성공적으로 암호화할 수 없습니다.

또는

피드백 크기가 알고리즘에 적합하지 않습니다.

설명

이 메서드의 동작은 .에 의해 TryEncryptCfbCore(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Span<Byte>, PaddingMode, Int32, Int32)정의됩니다.

적용 대상