ChaCha20Poly1305.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:
- ChaCha20Poly1305.cs
- Source:
- ChaCha20Poly1305.cs
- Source:
- ChaCha20Poly1305.cs
如果可验证身份验证标记,则将已加密文本解密到提供的目标缓冲区中。
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
的长度不同。
- 或 -
参数 nonce
长度不是 12 字节 (96 位) 。
-或-
参数 tag
长度不是 16 字节 (128 位) 。
nonce
、ciphertext
、tag
或 plaintext
参数为 null
。
无法验证标记值,或者解密操作失败。
注解
如果tag
无法使用键、 nonce
ciphertext
、 和 associatedData
值) 验证 (,则plaintext
清除 。
适用于
Decrypt(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Span<Byte>, ReadOnlySpan<Byte>)
- Source:
- ChaCha20Poly1305.cs
- Source:
- ChaCha20Poly1305.cs
- Source:
- ChaCha20Poly1305.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
的长度不同。
- 或 -
参数 nonce
长度不是 12 字节 (96 位) 。
-或-
参数 tag
长度不是 16 字节 (128 位) 。
无法验证标记值,或者解密操作失败。
注解
如果tag
无法使用键、 nonce
ciphertext
、 和 associatedData
值) 验证 (,则plaintext
清除 。