Nobody
uses xml encryption with binary datas ???
-----Message d'origine-----
De : Larchier Christophe [mailto:[EMAIL PROTECTED]
Envoyé : mercredi 29 mars 2006 17:41
À : [email protected]
Objet : xml encryption/decryption of binary dataHi all,
When I use apache xml security library to encrypt an xml document like the following one, the xml header is loosen.
<?xml version="1.0" encoding="UTF-8"?>
<PurchaseOrder>
...
</PurchaseOrder>
After encrypting/decrypting, I get only :
<PurchaseOrder>
...
</PurchaseOrder>
I use the doFinal() method to encrypt/decrypt with the all document as parameter :
xmlCipher.doFinal(doc, doc);
How do you manage this ?
Is it possible to do xml encryption with binary datas ?
I have tried to insert my binary datas into a dom document, but some special characters are added (to replace < > \).Thanks,
Christophe
