1 / 14

XML Encryption: Processing Rules for XML Elements and Content

XML Encryption: Processing Rules for XML Elements and Content. Ed Simon XMLsec Inc. “XML Security Training and Consulting” http://xmlsec.com. Overview. The current XML Encryption Processing Rules (section 4) state that

everly
Télécharger la présentation

XML Encryption: Processing Rules for XML Elements and Content

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. XML Encryption: Processing Rules for XML Elements and Content Ed SimonXMLsec Inc.“XML Security Training and Consulting”http://xmlsec.com

  2. Overview The current XML Encryption Processing Rules (section 4) state that • when encrypting an XML document’s child elements or element content, one must replace the plaintext content with <EncryptedData> elements • when decrypting, decrypted <EncryptedData> elements (of type Element or Content) must be replaced by the revealed XML If the requirement for replacement is not intentional, we should fix the text. If the requirement is intentional, I propose that it may be too limiting.

  3. Overview… Note: I am not suggesting that XML Encryption specify an API design, absolutely NOT! However, I don’t want XML Encryption to unnecessarily restrict API designs either. Note 2: Slides with detailed code are included for completeness; they are not essential for understanding this topic.

  4. How the current Processing Rules work Encrypted <?xml version="1.0" encoding="UTF-8"?> <Customers> <Customer> <Name><EncryptedData…></Name> <CreditCard> <Number><EncryptedData…></Number> <ExpiryDate> 2003 June 30 </ExpiryDate> </Customer> . . . </Customers> Original/Decrypted <?xml version="1.0" encoding="UTF-8"?> <Customers> <Customer> <Name>Jose Aznar</Name> <CreditCard> <Number> 1000 1234 5678 0001 </Number> <ExpiryDate> 2003 June 30 </ExpiryDate> </CreditCard> </Customer> . . . </Customers>

  5. What the code looks like Encrypting // Encrypt the content of the <CreditCard>/<Number> elements NodeIterator ni2 = XPathAPI.selectNodeIterator(doc,"//CreditCard/Number"); // Encrypt the nodes (only element content is encrypted) while ((node = ni2.nextNode())!= null) { System.out.print("."); xmlencEncryptor.encryptAndReplace((Element)node, true, getEncryptedDataTemplate(desKey, true), desKey); Decrypting // Get the nodes to be decrypted NodeList nl2 = DOMUtil.getElementsByTagNameNS( doc, XEncryption.XMLENC_NS, "EncryptedData"); // Decrypt for (int i = 0; i < nl2.getLength(); i++) { System.out.print("."); Element el = (Element)nl2.item(i); xmlencDecryptor.decryptAndReplace(el); }

  6. Other processing scenarios Scenario A: The XML source has no encrypted parts and is protected through authorization instead. However, there is an authorized app which selects certain credit card info for processing. It wants to query <CreditCard> elements and/or content, encrypt, and import the resulting <EncryptedData> element into a SOAP message. Scenario B: The XML source has encrypted elements and content accessible by a number of applications. When one of these applications queries an encrypted element, that app needs to decrypt the element but MUST NOT modify the source.

  7. Scenario A: SOAP msg w/ encrypted data . 1. Select node 3. Form SOAP msg 2. Encrypt node (no replace)and return to application Credit card info app customer.xml(no encryption) SOAP msg Authorization control

  8. Scenario A: SOAP message <?xml version="1.0" encoding="UTF-8"?> <Envelope xmlns="http://www.w3.org/2001/06/soap-envelope"> <Body> <VerifyCreditCardRequest xmlns="http://…/actions"> <EncryptedData Type="NodeList“ xmlns="http://…/xmlenc"> <EncryptionMethod Algorithm="urn:nist-gov:tripledes…"> <IV>adCwS3wowQ8=</IV> </EncryptionMethod> …<CipherData>Ynj…M1f</CipherData>… </EncryptedData> </VerifyCreditCardRequest> </Body> </Envelope>

  9. Scenario A code Encrypting // Encrypt the content of the 2nd <CreditCard>/<Number> element nodeToBeEncrypted = XPathAPI.selectSingleNode(doc, "//Customer[2]/CreditCard/Number"); // Encrypt the nodes (whole elements are encrypted) Element elemEncryptedData = xmlencEncryptor.encrypt((Element)nodeToBeEncrypted, false, getEncryptedDataTemplate(desKey, false), desKey); Document docSoap = new DocumentImpl(); Element elemEnvelope = docSoap.createElement("Envelope"); Element elemBody = docSoap.createElement("Body"); Element elemBodyChild = docSoap.createElement("VerifyCreditCardRequest"); Node nodeImported = docSoap.importNode(elemEncryptedData, true); elemBodyChild.appendChild(nodeImported); elemBody.appendChild(elemBodyChild); elemEnvelope.appendChild(elemBody); docSoap.appendChild(elemEnvelope);

  10. Scenario A code… Note: The preceding code works (uses IBM’s XSS4J) but, according to the spec, its illegal because the XML source is not being replaced.

  11. Scenario B: Encrypted customer DB . Customer name: H. LuCredit card#: 4011 23 1. Select <EncryptedData> node 3. Display info to authorized user 2. Decrypt node (no replace)and return to application Interface to authorized user Credit card info app customer.xml(encrypted)

  12. Scenario B code Decrypting // Get the nodes to be decrypted Element elemEncryptedDataToDecrypt = (Element) DOMUtil.getElementsByTagNameNS(doc, XEncryption.XMLENC_NS, "EncryptedData").item(5); Element elemIV = (Element) elemEncryptedDataToDecrypt.getElementsByTagName("IV").item(0); String strIV = elemIV.getFirstChild().getNodeValue(); Element elemCipherData = (Element) elemEncryptedDataToDecrypt.getElementsByTagName("CipherText").item(0); String strCipherData = elemCipherData.getFirstChild().getNodeValue(); javax.crypto.spec.IvParameterSpec ivparmspec = new javax.crypto.spec.IvParameterSpec(com.ibm.xml.dsig.Base64.decode(strIV)); Cipher desCipher = Cipher.getInstance("DESede/CBC/PKCS5Padding"); desCipher.init(Cipher.DECRYPT_MODE, desKey, ivparmspec); byte[] bytesPlainData = desCipher.doFinal(com.ibm.xml.dsig.Base64.decode(strCipherData)); String strCreditCardNumber = new String(bytesPlainData);

  13. Scenario B code… Don’t want to use decryptAndReplace() because I don’t want to modify the XML source. But XML Encryption doesn’t allow Toolkits to give me an alternative so I have to use low-level security APIs instead! Rather, XML Encryption should allow Toolkits to return the decrypted XML element or content without requiring replacement in the source.

  14. QAQ(Quietly Anticipated Questions) Question: Why not create a dummy document before and/or after encrypting? Answer: Yes, one could create a dummy document and copy in the relevant elements before encrypting or decrypting and still conform to the XML Encryption spec as it currently stands.However, this would be inefficient and often inelegant. Question: The example code you showed doesn’t deal with more complex context situations such as inherited namespaces, default attributes, etc.. How will those artifacts affect the no-replacement processing of <EncryptedData> elements? Answer: I think this question will only be answered through more coding and application experience. There could be some issues that arise.

More Related