[corlib] RemotingConfiguration now try to use the bundled machine.config first.
[mono.git] / mcs / class / System.Core / System.Security.Cryptography / CngUIPolicy.cs
1 //
2 // System.Security.Cryptography.CngUIPolicy
3 //
4 // Copyright (C) 2011 Juho Vähä-Herttua
5 //
6 // Permission is hereby granted, free of charge, to any person obtaining
7 // a copy of this software and associated documentation files (the
8 // "Software"), to deal in the Software without restriction, including
9 // without limitation the rights to use, copy, modify, merge, publish,
10 // distribute, sublicense, and/or sell copies of the Software, and to
11 // permit persons to whom the Software is furnished to do so, subject to
12 // the following conditions:
13 // 
14 // The above copyright notice and this permission notice shall be
15 // included in all copies or substantial portions of the Software.
16 // 
17 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
21 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 //
25
26 using System;
27
28 namespace System.Security.Cryptography {
29
30         // note: CNG stands for "Cryptography API: Next Generation"
31
32         public sealed class CngUIPolicy {
33                 private CngUIProtectionLevels level;
34                 private string name;
35                 private string desc;
36                 private string context;
37                 private string title;
38
39                 public CngUIPolicy (CngUIProtectionLevels protectionLevel)
40                         : this (protectionLevel, null)
41                 {
42                 }
43
44                 public CngUIPolicy (CngUIProtectionLevels protectionLevel,
45                                     string friendlyName)
46                         : this (protectionLevel, friendlyName, null)
47                 {
48                 }
49
50                 public CngUIPolicy (CngUIProtectionLevels protectionLevel,
51                                     string friendlyName,
52                                     string description)
53                         : this (protectionLevel, friendlyName, description, null)
54                 {
55                 }
56
57                 public CngUIPolicy (CngUIProtectionLevels protectionLevel,
58                                     string friendlyName,
59                                     string description,
60                                     string useContext)
61                         : this (protectionLevel, friendlyName, description, useContext, null)
62                 {
63                 }
64
65                 public CngUIPolicy (CngUIProtectionLevels protectionLevel,
66                                     string friendlyName,
67                                     string description,
68                                     string useContext,
69                                     string creationTitle)
70                 {
71                         level = protectionLevel;
72                         name = friendlyName;
73                         desc = description;
74                         context = useContext;
75                         title = creationTitle;
76                 }
77
78                 public CngUIProtectionLevels ProtectionLevel {
79                         get { return level; }
80                 }
81
82                 public string FriendlyName {
83                         get { return name; }
84                 }
85
86                 public string Description {
87                         get { return desc; }
88                 }
89
90                 public string UseContext {
91                         get { return context; }
92                 }
93
94                 public string CreationTitle {
95                         get { return title; }
96                 }
97         }
98 }