RSA.TryEncrypt 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 패딩 모드를 통해 제공된 버퍼로 입력 데이터를 암호화하려고 합니다.
public:
virtual bool TryEncrypt(ReadOnlySpan<System::Byte> data, Span<System::Byte> destination, System::Security::Cryptography::RSAEncryptionPadding ^ padding, [Runtime::InteropServices::Out] int % bytesWritten);
public virtual bool TryEncrypt (ReadOnlySpan<byte> data, Span<byte> destination, System.Security.Cryptography.RSAEncryptionPadding padding, out int bytesWritten);
abstract member TryEncrypt : ReadOnlySpan<byte> * Span<byte> * System.Security.Cryptography.RSAEncryptionPadding * int -> bool
override this.TryEncrypt : ReadOnlySpan<byte> * Span<byte> * System.Security.Cryptography.RSAEncryptionPadding * int -> bool
Public Overridable Function TryEncrypt (data As ReadOnlySpan(Of Byte), destination As Span(Of Byte), padding As RSAEncryptionPadding, ByRef bytesWritten As Integer) As Boolean
매개 변수
- data
- ReadOnlySpan<Byte>
암호화할 데이터입니다.
- padding
- RSAEncryptionPadding
패딩 모드입니다.
- bytesWritten
- Int32
이 메서드가 반환될 경우 destination
에 기록되는 총 바이트 수입니다. 이 매개 변수는 초기화되지 않은 것으로 처리됩니다.
반환
destination
이 암호화된 데이터를 받을 수 있을 만큼 충분히 긴 경우 true
이고, 그렇지 않으면 false
입니다.
예외
padding
이(가) null
인 경우
설명
이 메서드의 기본 구현은 를 호출 Encrypt(Byte[], RSAEncryptionPadding) 하고 결과를 destination
에 복사합니다.
파생 형식은 중간 배열을 만들지 않도록 이 메서드를 재정의해야 합니다.
RSA 암호화 알고리즘은 항상 비트에 필요한 바이트 수와 동일한 출력을 KeySize 생성합니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET