Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
CngKeyCreationParameters.cs
Go to the documentation of this file.
2
3public sealed class CngKeyCreationParameters
4{
6
7 public CngExportPolicies? ExportPolicy { get; set; }
8
10
11 public CngKeyUsages? KeyUsage { get; set; }
12
13 public CngPropertyCollection Parameters { get; private set; }
14
15 public IntPtr ParentWindowHandle { get; set; }
16
17 public CngProvider Provider
18 {
19 get
20 {
21 return _provider;
22 }
23 set
24 {
25 if (value == null)
26 {
27 throw new ArgumentNullException("value");
28 }
30 }
31 }
32
33 public CngUIPolicy? UIPolicy { get; set; }
34
40}
static CngProvider MicrosoftSoftwareKeyStorageProvider