2004-05-13 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / class / System.Security / System.Security.Cryptography.Xml / KeyInfoClause.cs
1 //
2 // KeyInfoClause.cs - Abstract KeyInfoClause implementation for XML Signature
3 //
4 // Author:
5 //      Sebastien Pouliot (spouliot@motus.com)
6 //
7 // (C) 2002, 2003 Motus Technologies Inc. (http://www.motus.com)
8 //
9
10 using System.Xml;
11
12 namespace System.Security.Cryptography.Xml {
13
14         public abstract class KeyInfoClause {
15
16                 public KeyInfoClause () {}
17
18                 public abstract XmlElement GetXml ();
19
20                 public abstract void LoadXml (XmlElement element);
21         }
22 }