ECDiffieHellmanCng.SecretPrepend Property

Definition

Gets or sets a value that will be added to the beginning of the secret agreement when deriving key material.

public:
 property cli::array <System::Byte> ^ SecretPrepend { cli::array <System::Byte> ^ get(); void set(cli::array <System::Byte> ^ value); };
public byte[] SecretPrepend { get; set; }
public byte[]? SecretPrepend { get; set; }
member this.SecretPrepend : byte[] with get, set
Public Property SecretPrepend As Byte()

Property Value

Byte[]

The value that is appended to the beginning of the secret agreement during key derivation.

Remarks

This value is used for key derivation if the KeyDerivationFunction property is set to one of the following values:

The value is prepended to the secret agreement, and the combined value is passed to the key derivation function (KDF) to generate the key material. By default, the value is null.

Applies to