2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.Security / System.Security.Cryptography.Xml / EncryptedType.cs
blob390f230d471384941342863ba277058ae88d436b
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
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.
31 #if NET_2_0
33 using System.Xml;
35 namespace System.Security.Cryptography.Xml {
36 public abstract class EncryptedType {
38 #region Fields
40 CipherData cipherData;
41 string encoding;
42 EncryptionMethod encryptionMethod;
43 EncryptionPropertyCollection encryptionProperties;
44 string id;
45 KeyInfo keyInfo;
46 string mimeType;
47 string type;
49 #endregion // Fields
51 #region Constructors
53 protected EncryptedType ()
55 cipherData = new CipherData ();
56 encryptionProperties = new EncryptionPropertyCollection ();
57 keyInfo = new KeyInfo ();
60 #endregion // Constructors
62 #region Properties
64 public virtual CipherData CipherData {
65 get { return cipherData; }
66 set { cipherData = value; }
69 public virtual string Encoding {
70 get { return encoding; }
71 set { encoding = value; }
74 public virtual EncryptionMethod EncryptionMethod {
75 get { return encryptionMethod; }
76 set { encryptionMethod = value; }
79 public virtual EncryptionPropertyCollection EncryptionProperties {
80 get { return encryptionProperties; }
83 public virtual string Id {
84 get { return id; }
85 set { id = value; }
88 public KeyInfo KeyInfo {
89 get { return keyInfo; }
90 set { keyInfo = value; }
93 public virtual string MimeType {
94 get { return mimeType; }
95 set { mimeType = value; }
98 public virtual string Type {
99 get { return type; }
100 set { type = value; }
103 #endregion // Properties
105 #region Methods
107 public void AddProperty (EncryptionProperty ep)
109 EncryptionProperties.Add (ep);
112 public abstract XmlElement GetXml ();
113 public abstract void LoadXml (XmlElement value);
115 #endregion // Methods
119 #endif