CngExportPolicies Enum

Definition

Specifies the key export policies for a key.

This enumeration supports a bitwise combination of its member values.

public enum class CngExportPolicies
[System.Flags]
public enum CngExportPolicies
[<System.Flags>]
type CngExportPolicies = 
Public Enum CngExportPolicies
Inheritance
CngExportPolicies
Attributes

Fields

AllowArchiving 4

The private key can be exported one time for archiving purposes.

AllowExport 1

The private key can be exported multiple times.

AllowPlaintextArchiving 8

The private key can be exported one time as plaintext.

AllowPlaintextExport 2

The private key can be exported multiple times as plaintext.

None 0

The key is not exportable.

Remarks

This class is used by the ExportPolicy property and the CngKeyCreationParameters class.

Applies to