다음을 통해 공유


CryptographyModelFactory.EncryptResult Method

Definition

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

keyId
String

Sets the KeyId property.

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