다음을 통해 공유


CryptographyModelFactory.EncryptParameters Method

Definition

Initializes a new instance of the EncryptParameters class for mocking purposes.

public static Azure.Security.KeyVault.Keys.Cryptography.EncryptParameters EncryptParameters (Azure.Security.KeyVault.Keys.Cryptography.EncryptionAlgorithm algorithm, byte[] plaintext, byte[] iv = default, byte[] additionalAuthenticatedData = default);
static member EncryptParameters : Azure.Security.KeyVault.Keys.Cryptography.EncryptionAlgorithm * byte[] * byte[] * byte[] -> Azure.Security.KeyVault.Keys.Cryptography.EncryptParameters
Public Shared Function EncryptParameters (algorithm As EncryptionAlgorithm, plaintext As Byte(), Optional iv As Byte() = Nothing, Optional additionalAuthenticatedData As Byte() = Nothing) As EncryptParameters

Parameters

algorithm
EncryptionAlgorithm

Sets the Algorithm property.

plaintext
Byte[]

Sets the Plaintext property.

iv
Byte[]

Sets the Iv property.

additionalAuthenticatedData
Byte[]

Sets the AdditionalAuthenticatedData property.

Returns

A new instance of the EncryptParameters class for mocking purposes.

Exceptions

plaintext is null.

Applies to