| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- //
- // RSAKeyValue.cs - RSAKeyValue implementation for XML Signature
- //
- // Author:
- // Sebastien Pouliot ([email protected])
- //
- // (C) 2002, 2003 Motus Technologies Inc. (http://www.motus.com)
- //
- using System.Text;
- using System.Xml;
- namespace System.Security.Cryptography.Xml {
- public class RSAKeyValue : KeyInfoClause {
- private RSA rsa;
- public RSAKeyValue ()
- {
- rsa = (RSA)RSA.Create ();
- }
- public RSAKeyValue (RSA key)
- {
- rsa = key;
- }
- public RSA Key {
- get { return rsa; }
- set { rsa = value; }
- }
- public override XmlElement GetXml ()
- {
- XmlDocument document = new XmlDocument ();
- XmlElement xel = document.CreateElement (XmlSignature.ElementNames.KeyValue, XmlSignature.NamespaceURI);
- xel.SetAttribute ("xmlns", XmlSignature.NamespaceURI);
- xel.InnerXml = rsa.ToXmlString (false);
- return xel;
- }
- public override void LoadXml (XmlElement value)
- {
- if (value == null)
- throw new ArgumentNullException ();
- if ((value.LocalName != XmlSignature.ElementNames.KeyValue) || (value.NamespaceURI != XmlSignature.NamespaceURI))
- throw new CryptographicException ("value");
- rsa.FromXmlString (value.InnerXml);
- }
- }
- }
|