Bearbeiten

CngKeyCreationParameters.KeyUsage Property

Definition

Gets or sets the cryptographic operations that apply to the current key.

public:
 property Nullable<System::Security::Cryptography::CngKeyUsages> KeyUsage { Nullable<System::Security::Cryptography::CngKeyUsages> get(); void set(Nullable<System::Security::Cryptography::CngKeyUsages> value); };
public System.Security.Cryptography.CngKeyUsages? KeyUsage { get; set; }
member this.KeyUsage : Nullable<System.Security.Cryptography.CngKeyUsages> with get, set
Public Property KeyUsage As Nullable(Of CngKeyUsages)

Property Value

A bitwise combination of one or more enumeration values that specify key usage. The default value is null, which indicates that the key storage provider's default key usage is set.

Remarks

This property is used when you create a new CngKey object. It specifies the usages (such as encryption/decryption, signing/verification, and secret agreement generation) that will be enabled on the new key.

Applies to