[corlib] Hunting down rare Task.WaitAll race
[mono.git] / mcs / class / corlib / System.Security.AccessControl / CryptoKeySecurity.cs
1 //
2 // System.Security.AccessControl.CryptoKeySecurity implementation
3 //
4 // Authors:
5 //      Sebastien Pouliot  <sebastien@ximian.com>
6 //      Dick Porter <dick@ximian.com>
7 //      Atsushi Enomoto  <atsushi@ximian.com>
8 //      James Bellinger  <jfb@zer7.com>
9 //
10 // Copyright (C) 2005-2007 Novell, Inc (http://www.novell.com)
11 // Copyright (C) 2012      James Bellinger
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32
33 using System.Security.Principal;
34
35 namespace System.Security.AccessControl
36 {
37         public sealed class CryptoKeySecurity : NativeObjectSecurity
38         {
39                 public CryptoKeySecurity ()
40                         : base (false, ResourceType.Unknown)
41                 {
42                 }
43
44                 public CryptoKeySecurity (CommonSecurityDescriptor securityDescriptor)
45                         : base (securityDescriptor, ResourceType.Unknown)
46                 {
47
48                 }
49                 
50                 public override Type AccessRightType {
51                         get { return typeof (CryptoKeyRights); }
52                 }
53                 
54                 public override Type AccessRuleType {
55                         get { return typeof (CryptoKeyAccessRule); }
56                 }
57
58                 public override Type AuditRuleType {
59                         get { return typeof (CryptoKeyAuditRule); }
60                 }
61                 
62                 public override sealed AccessRule AccessRuleFactory (IdentityReference identityReference, int accessMask,
63                                                                      bool isInherited, InheritanceFlags inheritanceFlags,
64                                                                      PropagationFlags propagationFlags, AccessControlType type)
65                 {
66                         return new CryptoKeyAccessRule (identityReference, (CryptoKeyRights) accessMask, type);
67                 }
68                 
69                 public void AddAccessRule (CryptoKeyAccessRule rule)
70                 {
71                         AddAccessRule ((AccessRule)rule);
72                 }
73                 
74                 public bool RemoveAccessRule (CryptoKeyAccessRule rule)
75                 {
76                         return RemoveAccessRule ((AccessRule)rule);
77                 }
78                 
79                 public void RemoveAccessRuleAll (CryptoKeyAccessRule rule)
80                 {
81                         RemoveAccessRuleAll ((AccessRule)rule);
82                 }
83                 
84                 public void RemoveAccessRuleSpecific (CryptoKeyAccessRule rule)
85                 {
86                         RemoveAccessRuleSpecific ((AccessRule)rule);
87                 }
88                 
89                 public void ResetAccessRule (CryptoKeyAccessRule rule)
90                 {
91                         ResetAccessRule ((AccessRule)rule);
92                 }
93                 
94                 public void SetAccessRule (CryptoKeyAccessRule rule)
95                 {
96                         SetAccessRule ((AccessRule)rule);
97                 }
98                 
99                 public override sealed AuditRule AuditRuleFactory (IdentityReference identityReference, int accessMask,
100                                                                    bool isInherited, InheritanceFlags inheritanceFlags,
101                                                                    PropagationFlags propagationFlags, AuditFlags flags)
102                 {
103                         return new CryptoKeyAuditRule (identityReference, (CryptoKeyRights) accessMask, flags);
104                 }
105                 
106                 public void AddAuditRule (CryptoKeyAuditRule rule)
107                 {
108                         AddAuditRule ((AuditRule)rule);
109                 }
110                 
111                 public bool RemoveAuditRule (CryptoKeyAuditRule rule)
112                 {
113                         return RemoveAuditRule((AuditRule)rule);
114                 }
115                 
116                 public void RemoveAuditRuleAll (CryptoKeyAuditRule rule)
117                 {
118                         RemoveAuditRuleAll((AuditRule)rule);
119                 }
120                 
121                 public void RemoveAuditRuleSpecific (CryptoKeyAuditRule rule)
122                 {
123                         RemoveAuditRuleSpecific((AuditRule)rule);
124                 }
125                 
126                 public void SetAuditRule (CryptoKeyAuditRule rule)
127                 {
128                         SetAuditRule((AuditRule)rule);
129                 }
130         }
131 }
132