CryptographyModelFactory.EncryptResult Method
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 EncryptResult class for mocking purposes.
public static Azure.Security.KeyVault.Keys.Cryptography.EncryptResult EncryptResult (string keyId = default, byte[] ciphertext = default, Azure.Security.KeyVault.Keys.Cryptography.EncryptionAlgorithm algorithm = default, byte[] iv = default, byte[] authenticatedTag = default, byte[] additionalAuthenticatedData = default);
static member EncryptResult : string * byte[] * Azure.Security.KeyVault.Keys.Cryptography.EncryptionAlgorithm * byte[] * byte[] * byte[] -> Azure.Security.KeyVault.Keys.Cryptography.EncryptResult
Public Shared Function EncryptResult (Optional keyId As String = Nothing, Optional ciphertext As Byte() = Nothing, Optional algorithm As EncryptionAlgorithm = Nothing, Optional iv As Byte() = Nothing, Optional authenticatedTag As Byte() = Nothing, Optional additionalAuthenticatedData As Byte() = Nothing) As EncryptResult
Parameters
- ciphertext
- Byte[]
Sets the Ciphertext property.
- algorithm
- EncryptionAlgorithm
Sets the Algorithm property.
- iv
- Byte[]
Sets the initialization vector for encryption.
- authenticatedTag
- Byte[]
Sets the authenticated tag resulting from encryption with a symmetric key using AES.
- additionalAuthenticatedData
- Byte[]
Sets additional data that is authenticated during decryption but not encrypted.
Returns
A new instance of the EncryptResult class for mocking purposes.
Applies to
Azure SDK for .NET