**** Merged from MCS ****
[mono-project.git] / mcs / class / System.Security / System.Security.Cryptography.Xml / Manifest.cs
blobd52ea001d436e4aa233e92e51a604854734751ff
1 //
2 // Manifest.cs - Manifest implementation for XML Signature
3 //
4 // Author:
5 // Sebastien Pouliot <sebastien@ximian.com>
6 //
7 // (C) 2004 Novell (http://www.novell.com)
8 //
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 using System.Collections;
32 using System.Xml;
34 namespace System.Security.Cryptography.Xml {
36 internal class Manifest {
38 private ArrayList references;
39 private string id;
40 private XmlElement element;
42 public Manifest ()
44 references = new ArrayList ();
47 public Manifest (XmlElement xel) : this ()
49 LoadXml (xel);
52 public string Id {
53 get { return id; }
54 set {
55 element = null;
56 id = value;
60 public ArrayList References {
61 get { return references; }
64 public void AddReference (Reference reference)
66 references.Add (reference);
69 public XmlElement GetXml ()
71 if (element != null)
72 return element;
74 XmlDocument document = new XmlDocument ();
75 XmlElement xel = document.CreateElement (XmlSignature.ElementNames.SignedInfo, XmlSignature.NamespaceURI);
76 if (id != null)
77 xel.SetAttribute (XmlSignature.AttributeNames.Id, id);
79 // we add References afterward so we don't end up with extraneous
80 // xmlns="..." in each reference elements.
81 foreach (Reference r in references) {
82 XmlNode xn = r.GetXml ();
83 XmlNode newNode = document.ImportNode (xn, true);
84 xel.AppendChild (newNode);
87 return xel;
90 private string GetAttribute (XmlElement xel, string attribute)
92 XmlAttribute xa = xel.Attributes [attribute];
93 return ((xa != null) ? xa.InnerText : null);
96 public void LoadXml (XmlElement value)
98 if (value == null)
99 throw new ArgumentNullException ("value");
101 if ((value.LocalName != XmlSignature.ElementNames.Manifest) || (value.NamespaceURI != XmlSignature.NamespaceURI))
102 throw new CryptographicException ();
104 id = GetAttribute (value, XmlSignature.AttributeNames.Id);
106 for (int i = 0; i < value.ChildNodes.Count; i++) {
107 XmlNode n = value.ChildNodes [i];
108 if (n.NodeType == XmlNodeType.Element &&
109 n.LocalName == XmlSignature.ElementNames.Reference &&
110 n.NamespaceURI == XmlSignature.NamespaceURI) {
111 Reference r = new Reference ();
112 r.LoadXml ((XmlElement) n);
113 AddReference (r);
116 element = value;