AesCcm.Decrypt 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
Decrypt(Byte[], Byte[], Byte[], Byte[], Byte[]) |
인증 태그의 유효성을 검사할 수 있는 경우 암호 텍스트를 제공된 대상 버퍼로 암호 해독합니다. |
Decrypt(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Span<Byte>, ReadOnlySpan<Byte>) |
인증 태그의 유효성을 검사할 수 있는 경우 암호 텍스트를 제공된 대상 버퍼로 암호 해독합니다. |
Decrypt(Byte[], Byte[], Byte[], Byte[], Byte[])
- Source:
- AesCcm.cs
- Source:
- AesCcm.cs
- Source:
- AesCcm.cs
인증 태그의 유효성을 검사할 수 있는 경우 암호 텍스트를 제공된 대상 버퍼로 암호 해독합니다.
public void Decrypt (byte[] nonce, byte[] ciphertext, byte[] tag, byte[] plaintext, byte[]? associatedData = default);
public void Decrypt (byte[] nonce, byte[] ciphertext, byte[] tag, byte[] plaintext, byte[] associatedData = default);
member this.Decrypt : byte[] * byte[] * byte[] * byte[] * byte[] -> unit
Public Sub Decrypt (nonce As Byte(), ciphertext As Byte(), tag As Byte(), plaintext As Byte(), Optional associatedData As Byte() = Nothing)
매개 변수
- nonce
- Byte[]
암호화 중에 제공된 값과 일치해야 하는 이 메시지와 연결된 nonce입니다.
- ciphertext
- Byte[]
암호 해독할 암호화된 콘텐츠입니다.
- tag
- Byte[]
암호화 중에 이 메시지에 대해 생성된 인증 태그입니다.
- plaintext
- Byte[]
암호 해독된 콘텐츠를 받을 바이트 배열입니다.
- associatedData
- Byte[]
암호화 중에 제공된 값과 일치해야 하는 이 메시지와 연결된 추가 데이터입니다.
예외
plaintext
매개 변수와 ciphertext
길이가 같지 않습니다.
-또는-
NonceByteSizes
nonce
매개 변수 길이는 허용되지 않습니다.
-또는-
TagByteSizes
tag
매개 변수 길이는 허용되지 않습니다.
nonce
, ciphertext
, tag
또는 plaintext
매개 변수가 null
.
암호 해독 작업이 실패했습니다. .NET 8 이전에는 태그 값을 확인할 수 없음을 나타냅니다.
.NET 8 이상 버전: 태그 값을 확인할 수 없습니다.
설명
키, nonce
, ciphertext
및 associatedData
값을 사용하여 tag
유효성을 검사할 수 없는 경우 plaintext
지워집니다.
적용 대상
Decrypt(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Span<Byte>, ReadOnlySpan<Byte>)
- Source:
- AesCcm.cs
- Source:
- AesCcm.cs
- Source:
- AesCcm.cs
인증 태그의 유효성을 검사할 수 있는 경우 암호 텍스트를 제공된 대상 버퍼로 암호 해독합니다.
public void Decrypt (ReadOnlySpan<byte> nonce, ReadOnlySpan<byte> ciphertext, ReadOnlySpan<byte> tag, Span<byte> plaintext, ReadOnlySpan<byte> associatedData = default);
member this.Decrypt : ReadOnlySpan<byte> * ReadOnlySpan<byte> * ReadOnlySpan<byte> * Span<byte> * ReadOnlySpan<byte> -> unit
Public Sub Decrypt (nonce As ReadOnlySpan(Of Byte), ciphertext As ReadOnlySpan(Of Byte), tag As ReadOnlySpan(Of Byte), plaintext As Span(Of Byte), Optional associatedData As ReadOnlySpan(Of Byte) = Nothing)
매개 변수
- nonce
- ReadOnlySpan<Byte>
암호화 중에 제공된 값과 일치해야 하는 이 메시지와 연결된 nonce입니다.
- ciphertext
- ReadOnlySpan<Byte>
암호 해독할 암호화된 콘텐츠입니다.
- tag
- ReadOnlySpan<Byte>
암호화 중에 이 메시지에 대해 생성된 인증 태그입니다.
- associatedData
- ReadOnlySpan<Byte>
암호화 중에 제공된 값과 일치해야 하는 이 메시지와 연결된 추가 데이터입니다.
예외
plaintext
매개 변수와 ciphertext
길이가 같지 않습니다.
-또는-
NonceByteSizes
nonce
매개 변수 길이는 허용되지 않습니다.
-또는-
TagByteSizes
tag
매개 변수 길이는 허용되지 않습니다.
암호 해독 작업이 실패했습니다. .NET 8 이전에는 태그 값을 확인할 수 없음을 나타냅니다.
.NET 8 이상 버전: 태그 값을 확인할 수 없습니다.
설명
키, nonce
, ciphertext
및 associatedData
값을 사용하여 tag
유효성을 검사할 수 없는 경우 plaintext
지워집니다.
적용 대상
.NET