前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >XML Encryption in .Net

XML Encryption in .Net

作者头像
阿新
发布2018-04-12 18:50:35
1K0
发布2018-04-12 18:50:35
举报
文章被收录于专栏:c#开发者

XML Encryption in .Net

One of the new features being introduced with the Whidbey version of the .Net framework is XML encryption.  XML Encryption allows you to encrypt arbitrary data, and have the result be an XML element.  Much as XML digital signatures are driven through the SignedXml class, this feature is driven through the new EncryptedXml class.  In order to allow this feature to work well with XML digital signatures, there is a special transform included with the framework, that allows the digital signature engine to decrypt the encryption document, and compute the signature over only that portion.

In this posting, I'll build upon the code from my earlier posting on signing an XML document.  In that post, I showed how to use XML digital signatures to verify that nobody had tampered with a CD order from a website.  However, this signature did nothing to hide the purchaser's credit card information from prying eyes.

Encrypting the Document

The first step is to setup an EncryptedXml object, and get a key that will be used for encryption.  This example generates a random RSA key (that is then written to a file, so that it can be used again to verify the signature and decrypt the document), but in real life, a well known key would be used here.  There are two choices for an encryption key -- you could use a symmetric key that both parties know, but this can be problematic for key management purposes.  Instead, I have chosen to use an RSA key.  I will then generate a random symmetric session key to do the actual encryption with, and embed this key within the encrypted document itself.

代码语言:javascript
复制
XmlDocument doc = new XmlDocument();
doc.Load("order.xml"); 
EncryptedXml exml = new EncryptedXml(doc);
    
// setup the key for encryption 
RSA sharedKey = new RSACryptoServiceProvider();
using(StreamWriter writer = new StreamWriter("shared-key.xml"))
    writer.WriteLine(sharedKey.ToXmlString(true)); 

// create a random session key to do the actual work with 
RijndaelManaged sessionKey = new RijndaelManaged();
sessionKey.KeySize = 256;
  
// encrypt the session key 
EncryptedKey ek = new EncryptedKey();
byte[] encryptedKey = EncryptedXml.EncryptKey(sessionKey.Key, sharedKey, false);
ek.CipherData = new CipherData(encryptedKey);
ek.EncryptionMethod = new EncryptionMethod(EncryptedXml.XmlEncRSA1_5Url); 
The last step in setting up the keys, is to assign a name to the key that I'm using to encrypt the document with, which will be later placed into the encrypted xml, allowing the reciepient of my encrypted document to determine which key to use to decrypt it with. 

// set up a key info clause for the key that was used to encrypt the session key 
KeyInfoName keyName = new KeyInfoName(); 
keyName.Value = "shared-key";
ek.KeyInfo.AddClause(keyName);
exml.AddKeyNameMapping("shared-key", sharedKey); 
In this example, I am only going to encrypt the payment tag, leaving the rest of the less-sensitive content in plain text. 

// encrypt the payment tag 
XmlElement paymentElem = doc.SelectSingleNode("/order/payment") as XmlElement;
byte[] encryptedPayment = exml.EncryptData(paymentElem, sessionKey, false);
  
// create the encrypted data 
EncryptedData ed = new EncryptedData();
ed.CipherData = new CipherData(encryptedPayment);
ed.Type = EncryptedXml.XmlEncElementUrl;
ed.EncryptionMethod = new EncryptionMethod(EncryptedXml.XmlEncAES256Url);
ed.KeyInfo.AddClause(new KeyInfoEncryptedKey(ek));

After computing the encrypted value, it is placed in an EncryptedData object, along with some information about how the encryption was done, including the name of the key necessary to decrypt the data, the algorithm used for the encryption, and the type of data that was encrypted.  Note that the encryption method is AES-256 since the session key was used for encryption, not the RSA key.  The last step is simply to replace the unencrypted data in the document with the encrypted version.

// replace the original XML with this version EncryptedXml.ReplaceElement(paymentElem, ed, false);

Modifications to the Signature

In order for the XML digital signature to be able to sign the unencrypted form of the payment element, it must have an XmlDecryptionTransform applied to it.  This transform needs to be setup with an EncryptedXml object that contains the key name mapping for any keys necessary to decrypt the document.  In this case, we can simply pass the EncryptedXml object that we already used to perform the encryption.  Here is the modified code that creates the reference to the content that is to be signed.

// create a reference to the root of the document  Reference orderRef = new Reference(""); orderRef.AddTransform(new XmlDsigEnvelopedSignatureTransform()); XmlDecryptionTransform decXform = new XmlDecryptionTransform(); decXform.EncryptedXml = exml; orderRef.AddTransform(decXform); signer.AddReference(orderRef);

The result

After running this modified code over order.xml, the result is:

代码语言:javascript
复制
<order>
  <purchase>
    <item quantity="1">Def Leppard: Pyromania</item>
    <item quantity="1">Ozzy Osbourne: Goodbye to Romance</item>
  </purchase>
  <shipping>
    <to>Shawn Farkas</to>
    <street>5 21st Street</street>
    <city>Seattle</city>
    <state>WA</state>
    <zip>98000</zip>
  </shipping>
  <EncryptedData Type="http://www.w3.org/2001/04/xmlenc#Element"
    xmlns="http://www.w3.org/2001/04/xmlenc#">
    <EncryptionMethod Algorithm="http://www.w3.org/2001/04/xmlenc#aes256-cbc" />
    <KeyInfo xmlns="http://www.w3.org/2000/09/xmldsig#">
      <EncryptedKey xmlns="http://www.w3.org/2001/04/xmlenc#">
        <EncryptionMethod Algorithm="http://www.w3.org/2001/04/xmlenc#rsa-1_5" />
        <KeyInfo xmlns="http://www.w3.org/2000/09/xmldsig#">
          <KeyName>shared-key</KeyName>
        </KeyInfo>
        <CipherData>
          <CipherValue>GIYVu9Hr  Gqj/9t0=</CipherValue>
        </CipherData>
      </EncryptedKey>
    </KeyInfo>
    <CipherData>
      <CipherValue>SFJKVdDT bGOYQw==</CipherValue>
    </CipherData>
  </EncryptedData>
  <Signature xmlns="http://www.w3.org/2000/09/xmldsig#">
    <SignedInfo>
      <CanonicalizationMethod Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315" />
      <SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1" />
      <Reference URI="">
        <Transforms>
          <Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" />
          <Transform Algorithm="http://www.w3.org/2002/07/decrypt#XML" />
        </Transforms>
        <DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
        <DigestValue>BPoz+CmKZyTATOhskqke3iOXmvA=</DigestValue>
      </Reference>
    </SignedInfo>
    <SignatureValue>QVBMvFic YEO31+o=</SignatureValue>
    <KeyInfo>
      <KeyValue>
        <RSAKeyValue>
          <Modulus>rh3AyE99 MdSOAo0=</Modulus>
          <Exponent>AQAB</Exponent>
        </RSAKeyValue>
      </KeyValue>
    </KeyInfo>
  </Signature>
</order>

Modifying the Verification Code

The modifications to the code that verify the signature are very minor.  All that needs to be done is to set the SignedXml object up with an EncryptedXml object that contains the necessary key name mappings.  In order to do this, I will first read the key in from the file created by the encryption process, add its name to an EncryptedXml object, and set this property on the SignedXml object.

// read in the encryption key  RSA sharedKey = new RSACryptoServiceProvider(); using(StreamReader reader = new StreamReader("shared-key.xml"))     sharedKey.FromXmlString(reader.ReadLine());  // setup the keyname mapping  EncryptedXml exml = new EncryptedXml(doc); exml.AddKeyNameMapping("shared-key", sharedKey);  SignedXml verifier = new SignedXml(doc); verifier.EncryptedXml = exml; Decrypting the Encrypted Data

Decrypting the encrypted payment value is also trivial.  This can be done simply by calling one method on the EncryptedXml object, which will decrypt any encrypted data in the document using the keys that it has in its key name mapping table, and replace the encrypted version with the decrypted one:

// decrypt the encrypted document exml.DecryptDocument(); Console.WriteLine("Decrypted payment info: "); Console.WriteLine(doc.SelectSingleNode("/order/payment").OuterXml);

Published Friday, November 14, 2003 11:10 PM by shawnfa

Filed under: Security, Cryptography, XML

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2008-08-06 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • XML Encryption in .Net
  • Encrypting the Document
  • Modifications to the Signature
  • // create a reference to the root of the document  Reference orderRef = new Reference(""); orderRef.AddTransform(new XmlDsigEnvelopedSignatureTransform()); XmlDecryptionTransform decXform = new XmlDecryptionTransform(); decXform.EncryptedXml = exml; orderRef.AddTransform(decXform); signer.AddReference(orderRef);
  • The result
  • Modifying the Verification Code
  • // read in the encryption key  RSA sharedKey = new RSACryptoServiceProvider(); using(StreamReader reader = new StreamReader("shared-key.xml"))     sharedKey.FromXmlString(reader.ReadLine());  // setup the keyname mapping  EncryptedXml exml = new EncryptedXml(doc); exml.AddKeyNameMapping("shared-key", sharedKey);  SignedXml verifier = new SignedXml(doc); verifier.EncryptedXml = exml; Decrypting the Encrypted Data
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档