AesGcm.Encrypt 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
Encrypt(Byte[], Byte[], Byte[], Byte[], Byte[]) |
将纯文本加密到已加密文本目标缓冲区,并将身份验证标签生成到单独的缓冲区中。 |
Encrypt(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Span<Byte>, Span<Byte>, ReadOnlySpan<Byte>) |
将纯文本加密到已加密文本目标缓冲区,并将身份验证标签生成到单独的缓冲区中。 |
Encrypt(Byte[], Byte[], Byte[], Byte[], Byte[])
- Source:
- AesGcm.cs
- Source:
- AesGcm.cs
- Source:
- AesGcm.cs
将纯文本加密到已加密文本目标缓冲区,并将身份验证标签生成到单独的缓冲区中。
public void Encrypt (byte[] nonce, byte[] plaintext, byte[] ciphertext, byte[] tag, byte[]? associatedData = default);
public void Encrypt (byte[] nonce, byte[] plaintext, byte[] ciphertext, byte[] tag, byte[] associatedData = default);
member this.Encrypt : byte[] * byte[] * byte[] * byte[] * byte[] -> unit
Public Sub Encrypt (nonce As Byte(), plaintext As Byte(), ciphertext As Byte(), tag As Byte(), Optional associatedData As Byte() = Nothing)
参数
- nonce
- Byte[]
与此消息相关联的 nonce。对于具有相同密钥的每个操作,它应该是唯一值。
- plaintext
- Byte[]
要加密的内容。
- ciphertext
- Byte[]
接收加密内容的字节数组。
- tag
- Byte[]
接收生成的身份验证标记的字节数组。
- associatedData
- Byte[]
与此消息关联的额外数据。该数据还必须在解密过程中提供。
例外
plaintext
参数和 ciphertext
的长度不同。
- 或 -
nonce
参数长度不被 NonceByteSizes 所允许。
- 或 -
tag
参数长度不被 TagByteSizes 所允许。
nonce
、ciphertext
、tag
或 plaintext
参数为 null
。
加密操作失败。
注解
AES-GCM 算法模式的安全性保证要求,同一个 nonce 值永远不会使用相同的密钥使用两次。
适用于
Encrypt(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Span<Byte>, Span<Byte>, ReadOnlySpan<Byte>)
- Source:
- AesGcm.cs
- Source:
- AesGcm.cs
- Source:
- AesGcm.cs
将纯文本加密到已加密文本目标缓冲区,并将身份验证标签生成到单独的缓冲区中。
public void Encrypt (ReadOnlySpan<byte> nonce, ReadOnlySpan<byte> plaintext, Span<byte> ciphertext, Span<byte> tag, ReadOnlySpan<byte> associatedData = default);
member this.Encrypt : ReadOnlySpan<byte> * ReadOnlySpan<byte> * Span<byte> * Span<byte> * ReadOnlySpan<byte> -> unit
Public Sub Encrypt (nonce As ReadOnlySpan(Of Byte), plaintext As ReadOnlySpan(Of Byte), ciphertext As Span(Of Byte), tag As Span(Of Byte), Optional associatedData As ReadOnlySpan(Of Byte) = Nothing)
参数
- nonce
- ReadOnlySpan<Byte>
与此消息相关联的 nonce。对于具有相同密钥的每个操作,它应该是唯一值。
- plaintext
- ReadOnlySpan<Byte>
要加密的内容。
- associatedData
- ReadOnlySpan<Byte>
与此消息关联的额外数据。该数据还必须在解密过程中提供。
例外
plaintext
参数和 ciphertext
的长度不同。
- 或 -
nonce
参数长度不被 NonceByteSizes 所允许。
- 或 -
tag
参数长度不被 TagByteSizes 所允许。
加密操作失败。
注解
AES-GCM 算法模式的安全性保证要求,同一个 nonce 值永远不会使用相同的密钥使用两次。