AuthenticatedEncryptionResult(SecurityKey, Byte[], Byte[], Byte[]) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the AuthenticatedEncryptionResult class.
public AuthenticatedEncryptionResult (Microsoft.IdentityModel.Tokens.SecurityKey key, byte[] ciphertext, byte[] iv, byte[] authenticationTag);
new Microsoft.IdentityModel.Tokens.AuthenticatedEncryptionResult : Microsoft.IdentityModel.Tokens.SecurityKey * byte[] * byte[] * byte[] -> Microsoft.IdentityModel.Tokens.AuthenticatedEncryptionResult
Public Sub New (key As SecurityKey, ciphertext As Byte(), iv As Byte(), authenticationTag As Byte())
Parameters
- key
- SecurityKey
The SecurityKey used during Encrypt(Byte[], Byte[]).
- ciphertext
- Byte[]
The encrypted text.
- iv
- Byte[]
The initialization vector used.
- authenticationTag
- Byte[]
The authentication tag that was created during the encyption and needs Decrypt(Byte[], Byte[], Byte[], Byte[]).