If the window manager does not support _NET_ACTIVE_WINDOW, fall back to XGetInputFocus
[mono.git] / mcs / class / WindowsBase / System.IO.Packaging / PackageDigitalSignatureManager.cs
1 // Permission is hereby granted, free of charge, to any person obtaining
2 // a copy of this software and associated documentation files (the
3 // "Software"), to deal in the Software without restriction, including
4 // without limitation the rights to use, copy, modify, merge, publish,
5 // distribute, sublicense, and/or sell copies of the Software, and to
6 // permit persons to whom the Software is furnished to do so, subject to
7 // the following conditions:
8 // 
9 // The above copyright notice and this permission notice shall be
10 // included in all copies or substantial portions of the Software.
11 // 
12 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
13 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
14 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
15 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
16 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
17 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
18 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19 //
20 // Copyright (c) 2008 Novell, Inc. (http://www.novell.com)
21 //
22 // Authors:
23 //      Chris Toshok (toshok@ximian.com)
24 //
25
26 using System;
27 using System.Collections.Generic;
28 using System.Collections.ObjectModel;
29 using System.Security;
30 using System.Security.Cryptography.X509Certificates;
31 #if notyet
32 using System.Security.Cryptography.Xml;
33 #endif
34
35 namespace System.IO.Packaging {
36
37         public class PackageDigitalSignatureManager
38         {
39                 public static string DefaultHashAlgorithm {
40                         get { throw new NotImplementedException (); }
41                 }
42
43                 public static string SignatureOriginRelationshipType {
44                         get { throw new NotImplementedException (); }
45                 }
46
47
48                 public PackageDigitalSignatureManager (Package package)
49                 {
50                         throw new NotImplementedException ();
51                 }
52
53
54                 public CertificateEmbeddingOption CertificateOption {
55                         get { throw new NotImplementedException (); }
56                         set { throw new NotImplementedException (); }
57                 }
58
59                 public string HashAlgorithm {
60                         get { throw new NotImplementedException (); }
61                         set { throw new NotImplementedException (); }
62                 }
63
64                 public bool IsSigned {
65                         get { throw new NotImplementedException (); }
66                 }
67
68                 public IntPtr ParentWindow {
69                         get { throw new NotImplementedException (); }
70                         set { throw new NotImplementedException (); }
71                 }
72
73                 public Uri SignatureOrigin {
74                         get { throw new NotImplementedException (); }
75                 }
76
77                 public ReadOnlyCollection<PackageDigitalSignature> Signatures {
78                         get { throw new NotImplementedException (); }
79                 }
80
81                 public string TimeFormat {
82                         get { throw new NotImplementedException (); }
83                         set { throw new NotImplementedException (); }
84                 }
85
86                 public Dictionary<string, string> TransformMapping {
87                         get { throw new NotImplementedException (); }
88                 }
89
90
91                 public event InvalidSignatureEventHandler InvalidSignatureEvent;
92
93                 public PackageDigitalSignature Countersign()
94                 {
95                         throw new NotImplementedException ();
96                 }
97
98                 public PackageDigitalSignature Countersign(X509Certificate certificate)
99                 {
100                         throw new NotImplementedException ();
101                 }
102
103                 public PackageDigitalSignature Countersign(X509Certificate certificate, IEnumerable<Uri> signatures)
104                 {
105                         throw new NotImplementedException ();
106                 }
107
108                 public PackageDigitalSignature GetSignature (Uri signatureUri)
109                 {
110                         throw new NotImplementedException ();
111                 }
112
113
114                 public void RemoveSignature (Uri signatureUri)
115                 {
116                         throw new NotImplementedException ();
117                 }
118
119                 public void RemoveAllSignatures ()
120                 {
121                         throw new NotImplementedException ();
122                 }
123
124
125                 public PackageDigitalSignature Sign (IEnumerable<Uri> parts)
126                 {
127                         throw new NotImplementedException ();
128                 }
129
130                 public PackageDigitalSignature Sign (IEnumerable<Uri> parts, X509Certificate certificate)
131                 {
132                         throw new NotImplementedException ();
133                 }
134
135                 public PackageDigitalSignature Sign (IEnumerable<Uri> parts, X509Certificate certificate, IEnumerable<PackageRelationshipSelector> relationshipSelectors)
136                 {
137                         throw new NotImplementedException ();
138                 }
139
140                 public PackageDigitalSignature Sign (IEnumerable<Uri> parts, X509Certificate certificate, IEnumerable<PackageRelationshipSelector> relationshipSelectors,
141                                                      string signatureId)
142                 {
143                         throw new NotImplementedException ();
144                 }
145
146 #if notyet
147                 public PackageDigitalSignature Sign (IEnumerable<Uri> parts, X509Certificate certificate, IEnumerable<PackageRelationshipSelector> relationshipSelectors,
148                                                      string signatureId,
149                                                      IEnumerable<DataObject> signatureObjects,
150                                                      IEnumerable<Reference> objectReferences)
151                 {
152                         throw new NotImplementedException ();
153                 }
154 #endif
155
156                 [SecurityCritical]
157                 public static X509ChainStatusFlags VerifyCertificate (X509Certificate certificate)
158                 {
159                         throw new NotImplementedException ();
160                 }
161
162                 public VerifyResult VerifySignatures (bool exitOnFailure)
163                 {
164                         throw new NotImplementedException ();
165                 }
166         }
167
168 }