mscorlib(4.0.0.0) API with additions
CspProviderFlags.cs
2 
4 {
7  [ComVisible(true)]
8  [Flags]
9  public enum CspProviderFlags
10  {
12  NoFlags = 0x0,
14  UseMachineKeyStore = 0x1,
18  UseNonExportableKey = 0x4,
20  UseExistingKey = 0x8,
22  UseArchivableKey = 0x10,
24  UseUserProtectedKey = 0x20,
26  NoPrompt = 0x40,
28  CreateEphemeralKey = 0x80
29  }
30 }
Use key information from the computer's key store.
Definition: __Canon.cs:3
CspProviderFlags
Specifies flags that modify the behavior of the cryptographic service providers (CSP).
Allow a key to be exported for archival or recovery.
Create a temporary key that is released when the associated Rivest-Shamir-Adleman (RSA) object is clo...
Use key information that cannot be exported.
Notify the user through a dialog box or another method when certain actions are attempting to use a k...
Use key information from the current key.
Prevent the CSP from displaying any user interface (UI) for this context.
Specifies that the class can be serialized.
Use key information from the default key container.