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:
9 // The above copyright notice and this permission notice shall be
10 // included in all copies or substantial portions of the Software.
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.
20 // Copyright (c) 2008 Novell, Inc. (http://www.novell.com)
23 // Chris Toshok (toshok@ximian.com)
27 using System
.Collections
.Generic
;
28 using System
.Collections
.ObjectModel
;
29 using System
.Security
;
30 using System
.Security
.Cryptography
.X509Certificates
;
32 using System
.Security
.Cryptography
.Xml
;
35 namespace System
.IO
.Packaging
{
37 public class PackageDigitalSignatureManager
39 public static string DefaultHashAlgorithm
{
40 get { throw new NotImplementedException (); }
43 public static string SignatureOriginRelationshipType
{
44 get { throw new NotImplementedException (); }
48 public PackageDigitalSignatureManager (Package package
)
50 throw new NotImplementedException ();
54 public CertificateEmbeddingOption CertificateOption
{
55 get { throw new NotImplementedException (); }
56 set { throw new NotImplementedException (); }
59 public string HashAlgorithm
{
60 get { throw new NotImplementedException (); }
61 set { throw new NotImplementedException (); }
64 public bool IsSigned
{
65 get { throw new NotImplementedException (); }
68 public IntPtr ParentWindow
{
69 get { throw new NotImplementedException (); }
70 set { throw new NotImplementedException (); }
73 public Uri SignatureOrigin
{
74 get { throw new NotImplementedException (); }
77 public ReadOnlyCollection
<PackageDigitalSignature
> Signatures
{
78 get { throw new NotImplementedException (); }
81 public string TimeFormat
{
82 get { throw new NotImplementedException (); }
83 set { throw new NotImplementedException (); }
86 public Dictionary
<string, string> TransformMapping
{
87 get { throw new NotImplementedException (); }
91 public event InvalidSignatureEventHandler InvalidSignatureEvent
;
93 public PackageDigitalSignature
Countersign()
95 throw new NotImplementedException ();
98 public PackageDigitalSignature
Countersign(X509Certificate certificate
)
100 throw new NotImplementedException ();
103 public PackageDigitalSignature
Countersign(X509Certificate certificate
, IEnumerable
<Uri
> signatures
)
105 throw new NotImplementedException ();
108 public PackageDigitalSignature
GetSignature (Uri signatureUri
)
110 throw new NotImplementedException ();
114 public void RemoveSignature (Uri signatureUri
)
116 throw new NotImplementedException ();
119 public void RemoveAllSignatures ()
121 throw new NotImplementedException ();
125 public PackageDigitalSignature
Sign (IEnumerable
<Uri
> parts
)
127 throw new NotImplementedException ();
130 public PackageDigitalSignature
Sign (IEnumerable
<Uri
> parts
, X509Certificate certificate
)
132 throw new NotImplementedException ();
135 public PackageDigitalSignature
Sign (IEnumerable
<Uri
> parts
, X509Certificate certificate
, IEnumerable
<PackageRelationshipSelector
> relationshipSelectors
)
137 throw new NotImplementedException ();
140 public PackageDigitalSignature
Sign (IEnumerable
<Uri
> parts
, X509Certificate certificate
, IEnumerable
<PackageRelationshipSelector
> relationshipSelectors
,
143 throw new NotImplementedException ();
147 public PackageDigitalSignature
Sign (IEnumerable
<Uri
> parts
, X509Certificate certificate
, IEnumerable
<PackageRelationshipSelector
> relationshipSelectors
,
149 IEnumerable
<DataObject
> signatureObjects
,
150 IEnumerable
<Reference
> objectReferences
)
152 throw new NotImplementedException ();
157 public static X509ChainStatusFlags
VerifyCertificate (X509Certificate certificate
)
159 throw new NotImplementedException ();
162 public VerifyResult
VerifySignatures (bool exitOnFailure
)
164 throw new NotImplementedException ();