CngKeyCreationOptions Enum
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.
Specifies options used for key creation.
This enumeration supports a bitwise combination of its member values.
public enum class CngKeyCreationOptions
[System.Flags]
public enum CngKeyCreationOptions
[<System.Flags>]
type CngKeyCreationOptions =
Public Enum CngKeyCreationOptions
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | No key creation options are used. |
MachineKey | 32 | A machine-wide key is created. |
OverwriteExistingKey | 128 | The existing key is overwritten during key creation. |
PreferVbs | 65536 | Indicates a key should be protected with Virtualization-based security (VBS). |
RequireVbs | 131072 | Indicates a key must be protected with Virtualization-based security (VBS). |
UsePerBootKey | 262144 | Instructs Virtualization-based security (VBS) to protect the client key with a per-boot key when combined with RequireVbs or PreferVbs. |
Remarks
This type is used by the KeyCreationOptions property.