HybridDataEncryptionKey(String, String, Int32) Constructor

Definition

Initializes a new instance of HybridDataEncryptionKey.

public HybridDataEncryptionKey (string keyModulus, string keyExponent, int encryptionChunkSizeInBytes);
new Azure.ResourceManager.HybridData.Models.HybridDataEncryptionKey : string * string * int -> Azure.ResourceManager.HybridData.Models.HybridDataEncryptionKey
Public Sub New (keyModulus As String, keyExponent As String, encryptionChunkSizeInBytes As Integer)

Parameters

keyModulus
String

Modulus of the encryption key.

keyExponent
String

Exponent of the encryption key.

encryptionChunkSizeInBytes
Int32

The maximum byte size that can be encrypted by the key. For a key size larger than the size, break into chunks and encrypt each chunk, append each encrypted chunk with : to mark the end of the chunk.

Exceptions

keyModulus or keyExponent is null.

Applies to