CspProviderFlags Enumeration
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Specifies flags that modify the behavior of the cryptographic service providers (CSP).
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: System.Security.CryptographyAssembly: mscorlib (in mscorlib.dll)
| Member name | Description | |
|---|---|---|
| NoFlags | Do not specify any settings. | |
| NoPrompt | Prevent the CSP from displaying any user interface (UI) for this context. | |
| UseArchivableKey | Allow a key to be exported for archival or recovery. | |
| UseDefaultKeyContainer | Use key information from the default key container. | |
| UseExistingKey | Use key information from the current key. | |
| UseMachineKeyStore | Use key information from the computer's key store. | |
| UseNonExportableKey | Use key information that cannot be exported. | |
| UseUserProtectedKey | Notify the user through a dialog box or another method when certain actions are attempting to use a key. This flag is not compatible with the NoPrompt flag. |
Show: