This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / class / System.Security / System.Security.Cryptography.Xml / EncryptedType.cs
1 //
2 // EncryptedType.cs - EncryptedType implementation for XML Encryption
3 // http://www.w3.org/2001/04/xmlenc#sec-EncryptedType
4 //
5 // Author:
6 //      Tim Coleman (tim@timcoleman.com)
7 //
8 // Copyright (C) Tim Coleman, 2004
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 #if NET_2_0
32
33 using System.Xml;
34
35 namespace System.Security.Cryptography.Xml {
36         public abstract class EncryptedType {
37
38                 #region Fields
39
40                 CipherData cipherData;
41                 string encoding;
42                 EncryptionMethod encryptionMethod;
43                 EncryptionProperties encryptionProperties;
44                 string id;
45                 KeyInfo keyInfo;
46                 string mimeType;
47                 string type;
48         
49                 #endregion // Fields
50         
51                 #region Constructors
52
53                 protected EncryptedType ()
54                 {
55                         cipherData = null;
56                         encoding = null;
57                         encryptionMethod = null;
58                         encryptionProperties = new EncryptionProperties ();
59                         id = null;
60                         keyInfo = null;
61                         mimeType = null;
62                         type = null;
63                 }
64         
65                 #endregion // Constructors
66         
67                 #region Properties
68
69                 public virtual CipherData CipherData {
70                         get { return cipherData; }
71                         set { cipherData = value; }
72                 }
73
74                 public virtual string Encoding {
75                         get { return encoding; }
76                         set { encoding = value; }
77                 }
78
79                 public virtual EncryptionMethod EncryptionMethod {
80                         get { return encryptionMethod; }
81                         set { encryptionMethod = value; }
82                 }
83
84                 public virtual EncryptionProperties EncryptionProperties {
85                         get { return encryptionProperties; }
86                         set { encryptionProperties = value; }
87                 }
88
89                 public virtual string Id {
90                         get { return id; }
91                         set { id = value; }
92                 }
93
94                 public KeyInfo KeyInfo {
95                         get { return keyInfo; }
96                         set { keyInfo = value; }
97                 }
98
99                 public virtual string MimeType {
100                         get { return mimeType; }
101                         set { mimeType = value; }
102                 }
103
104                 public virtual string Type {
105                         get { return type; }
106                         set { type = value; }
107                 }
108
109                 #endregion // Properties
110
111                 #region Methods
112
113                 public void AddProperty (EncryptionProperty ep)
114                 {
115                         EncryptionProperties.Add (ep);
116                 }
117
118                 public abstract XmlElement GetXml ();
119                 public abstract void LoadXml (XmlElement value);
120
121                 #endregion // Methods
122         }
123 }
124
125 #endif