Presentation is loading. Please wait.

Presentation is loading. Please wait.

XML Encryption: Processing Rules for XML Elements and Content Ed Simon XMLsec Inc. “XML Security Training and Consulting”

Similar presentations


Presentation on theme: "XML Encryption: Processing Rules for XML Elements and Content Ed Simon XMLsec Inc. “XML Security Training and Consulting”"— Presentation transcript:

1 XML Encryption: Processing Rules for XML Elements and Content Ed Simon XMLsec 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 elements –when decrypting, decrypted 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 Original/Decrypted Jose Aznar 1000 1234 5678 0001 2003 June 30... Encrypted 2003 June 30...

5 What the code looks like Encrypting // Encrypt the content of the / 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 elements and/or content, encrypt, and import the resulting 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. SOAP msg customer.xml (no encryption) Authorization control 1. Select node 2. Encrypt node (no replace) and return to application 3. Form SOAP msg Credit card info app

8 Scenario A: SOAP message adCwS3wowQ8= … Ynj…M1f …

9 Scenario A code Encrypting // Encrypt the content of the 2nd / 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 1. Select node. Interface to authorized user customer.xml (encrypted) Credit card info app Customer name: H. Lu Credit card#: 4011 23 3. Display info to authorized user 2. Decrypt node (no replace) and return to application

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 elements? Answer: I think this question will only be answered through more coding and application experience. There could be some issues that arise.


Download ppt "XML Encryption: Processing Rules for XML Elements and Content Ed Simon XMLsec Inc. “XML Security Training and Consulting”"

Similar presentations


Ads by Google