X509KeyStorageFlags 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.
Defines where and how to import the private key of an X.509 certificate.
This enumeration supports a bitwise combination of its member values.
public enum class X509KeyStorageFlags
[System.Flags]
public enum X509KeyStorageFlags
[System.Flags]
[System.Runtime.InteropServices.ComVisible(true)]
[System.Serializable]
public enum X509KeyStorageFlags
[<System.Flags>]
type X509KeyStorageFlags =
[<System.Flags>]
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Serializable>]
type X509KeyStorageFlags =
Public Enum X509KeyStorageFlags
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
DefaultKeySet | 0 | The default key set is used. The user key set is usually the default. |
UserKeySet | 1 | Private keys are stored in the current user store rather than the local computer store. This occurs even if the certificate specifies that the keys should go in the local computer store. |
MachineKeySet | 2 | Private keys are stored in the local computer store rather than the current user store. |
Exportable | 4 | Imported keys are marked as exportable. |
UserProtected | 8 | Notify the user through a dialog box or other method that the key is accessed. The Cryptographic Service Provider (CSP) in use defines the precise behavior. |
PersistKeySet | 16 | The key associated with a PFX file is persisted when importing a certificate. |
EphemeralKeySet | 32 | The key associated with a PFX file is created in memory and not persisted on disk when importing a certificate. |
Applies to
.NET