CngKeyCreationParameters.KeyUsage Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.