You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by bu...@apache.org on 2013/08/15 13:19:08 UTC

svn commit: r874695 - in /websites/production/camel/content: book-dataformat-appendix.html book-in-one-page.html cache/main.pageCache xmlsecurity-dataformat.html

Author: buildbot
Date: Thu Aug 15 11:19:08 2013
New Revision: 874695

Log:
Production update by buildbot for camel

Modified:
    websites/production/camel/content/book-dataformat-appendix.html
    websites/production/camel/content/book-in-one-page.html
    websites/production/camel/content/cache/main.pageCache
    websites/production/camel/content/xmlsecurity-dataformat.html

Modified: websites/production/camel/content/book-dataformat-appendix.html
==============================================================================
--- websites/production/camel/content/book-dataformat-appendix.html (original)
+++ websites/production/camel/content/book-dataformat-appendix.html Thu Aug 15 11:19:08 2013
@@ -2863,7 +2863,7 @@ The XMLSecurity Data Format supports asy
 <table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"> Option </th><th colspan="1" rowspan="1" class="confluenceTh"> Default </th><th colspan="1" rowspan="1" class="confluenceTh"> Description </th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>secureTag</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> The XPath reference to the XML Element selected for encryption/decryption. If no tag is specified, the entire payload is encrypted/decrypted. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>secureTagContents</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> A boolean value to specify whether the XML Element is to be encrypted or the contents of the XML Element
 <ul><li><tt>false</tt> = Element Level</li><li><tt>true</tt> = Element Content Level</li></ul>
 </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>passPhrase</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> A String used as passPhrase to encrypt/decrypt content. The passPhrase has to be provided. If no passPhrase is specified, a default passPhrase is used. The passPhrase needs to be put together in conjunction with the appropriate encryption algorithm. For example using <tt>TRIPLEDES</tt> the passPhase can be a <tt>"Only another 24 Byte key"</tt> </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>xmlCipherAlgorithm</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>TRIPLEDES</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> The cipher algorithm to be used for encryption/decryption of the XML message content. The available choices are:
-<ul><li><tt>XMLCipher.TRIPLEDES</tt></li><li><tt>XMLCipher.AES_128</tt></li><li><tt>XMLCipher.AES_192</tt></li><li><tt>XMLCipher.AES_256</tt></li></ul>
+<ul><li><tt>XMLCipher.TRIPLEDES</tt></li><li><tt>XMLCipher.AES_128</tt></li><li><tt>XMLCipher.AES_128_GCM</tt> <b>Camel 2.12</b></li><li><tt>XMLCipher.AES_192</tt></li><li><tt>XMLCipher.AES_192_GCM</tt> <b>Camel 2.12</b></li><li><tt>XMLCipher.AES_256</tt></li><li><tt>XMLCipher.AES_256_GCM</tt> <b>Camel 2.12</b></li></ul>
 </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>namespaces</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> A map of namespace values indexed by prefix. The index values must match the prefixes used in the <tt>secureTag</tt> XPath query. </td></tr></tbody></table>
 </div>
 
@@ -2874,8 +2874,12 @@ The XMLSecurity Data Format supports asy
 
 <div class="table-wrap">
 <table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"> Option </th><th colspan="1" rowspan="1" class="confluenceTh"> Default </th><th colspan="1" rowspan="1" class="confluenceTh"> Description </th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>recipientKeyAlias</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> The key alias to be used when retrieving the recipient's public or private key from a KeyStore when performing asymmetric key encryption or decryption. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>keyCipherAlgorithm</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> The cipher algorithm to be used for encryption/decryption of the asymmetric key. The available choices are: 
-<ul><li><tt>XMLCipher.RSA_v1dot5</tt></li><li><tt>XMLCipher.RSA_OAEP</tt></li></ul>
-</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>keyOrTrustStoreParameters</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Configuration options for creating and loading a KeyStore instance that represents the sender's trustStore or recipient's keyStore. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>keyPassword</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.10.2 / 2.11:</b> The password to be used for retrieving the private key from the KeyStore. This key is used for asymmetric decryption. </td></tr></tbody></table>
+<ul><li><tt>XMLCipher.RSA_v1dot5</tt></li><li><tt>XMLCipher.RSA_OAEP</tt></li><li><tt>XMLCipher.RSA_OAEP_11</tt></li></ul>
+</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>keyOrTrustStoreParameters</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Configuration options for creating and loading a KeyStore instance that represents the sender's trustStore or recipient's keyStore. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>keyPassword</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.10.2 / 2.11:</b> The password to be used for retrieving the private key from the KeyStore. This key is used for asymmetric decryption. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>digestAlgorithm</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> XMLCipher.SHA1 </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.12</b> The digest algorithm to use with the RSA OAEP algorithm
 . The available choices are:
+<ul><li><tt>XMLCipher.SHA1</tt></li><li><tt>XMLCipher.SHA256</tt></li><li><tt>XMLCipher.SHA512</tt></li></ul>
+</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>mgfAlgorithm</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> EncryptionConstants.MGF1_SHA1 </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.12</b> The MGF Algorithm to use with the RSA OAEP algorithm. The available choices are:
+<ul><li><tt>EncryptionConstants.MGF1_SHA1</tt></li><li><tt>EncryptionConstants.MGF1_SHA256</tt></li><li><tt>EncryptionConstants.MGF1_SHA512</tt></li></ul>
+</td></tr></tbody></table>
 </div>
 
 

Modified: websites/production/camel/content/book-in-one-page.html
==============================================================================
--- websites/production/camel/content/book-in-one-page.html (original)
+++ websites/production/camel/content/book-in-one-page.html Thu Aug 15 11:19:08 2013
@@ -14258,7 +14258,7 @@ The XMLSecurity Data Format supports asy
 <table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"> Option </th><th colspan="1" rowspan="1" class="confluenceTh"> Default </th><th colspan="1" rowspan="1" class="confluenceTh"> Description </th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>secureTag</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> The XPath reference to the XML Element selected for encryption/decryption. If no tag is specified, the entire payload is encrypted/decrypted. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>secureTagContents</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> A boolean value to specify whether the XML Element is to be encrypted or the contents of the XML Element
 <ul><li><tt>false</tt> = Element Level</li><li><tt>true</tt> = Element Content Level</li></ul>
 </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>passPhrase</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> A String used as passPhrase to encrypt/decrypt content. The passPhrase has to be provided. If no passPhrase is specified, a default passPhrase is used. The passPhrase needs to be put together in conjunction with the appropriate encryption algorithm. For example using <tt>TRIPLEDES</tt> the passPhase can be a <tt>"Only another 24 Byte key"</tt> </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>xmlCipherAlgorithm</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>TRIPLEDES</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> The cipher algorithm to be used for encryption/decryption of the XML message content. The available choices are:
-<ul><li><tt>XMLCipher.TRIPLEDES</tt></li><li><tt>XMLCipher.AES_128</tt></li><li><tt>XMLCipher.AES_192</tt></li><li><tt>XMLCipher.AES_256</tt></li></ul>
+<ul><li><tt>XMLCipher.TRIPLEDES</tt></li><li><tt>XMLCipher.AES_128</tt></li><li><tt>XMLCipher.AES_128_GCM</tt> <b>Camel 2.12</b></li><li><tt>XMLCipher.AES_192</tt></li><li><tt>XMLCipher.AES_192_GCM</tt> <b>Camel 2.12</b></li><li><tt>XMLCipher.AES_256</tt></li><li><tt>XMLCipher.AES_256_GCM</tt> <b>Camel 2.12</b></li></ul>
 </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>namespaces</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> A map of namespace values indexed by prefix. The index values must match the prefixes used in the <tt>secureTag</tt> XPath query. </td></tr></tbody></table>
 </div>
 
@@ -14269,8 +14269,12 @@ The XMLSecurity Data Format supports asy
 
 <div class="table-wrap">
 <table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"> Option </th><th colspan="1" rowspan="1" class="confluenceTh"> Default </th><th colspan="1" rowspan="1" class="confluenceTh"> Description </th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>recipientKeyAlias</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> The key alias to be used when retrieving the recipient's public or private key from a KeyStore when performing asymmetric key encryption or decryption. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>keyCipherAlgorithm</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> The cipher algorithm to be used for encryption/decryption of the asymmetric key. The available choices are: 
-<ul><li><tt>XMLCipher.RSA_v1dot5</tt></li><li><tt>XMLCipher.RSA_OAEP</tt></li></ul>
-</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>keyOrTrustStoreParameters</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Configuration options for creating and loading a KeyStore instance that represents the sender's trustStore or recipient's keyStore. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>keyPassword</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.10.2 / 2.11:</b> The password to be used for retrieving the private key from the KeyStore. This key is used for asymmetric decryption. </td></tr></tbody></table>
+<ul><li><tt>XMLCipher.RSA_v1dot5</tt></li><li><tt>XMLCipher.RSA_OAEP</tt></li><li><tt>XMLCipher.RSA_OAEP_11</tt></li></ul>
+</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>keyOrTrustStoreParameters</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Configuration options for creating and loading a KeyStore instance that represents the sender's trustStore or recipient's keyStore. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>keyPassword</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.10.2 / 2.11:</b> The password to be used for retrieving the private key from the KeyStore. This key is used for asymmetric decryption. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>digestAlgorithm</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> XMLCipher.SHA1 </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.12</b> The digest algorithm to use with the RSA OAEP algorithm
 . The available choices are:
+<ul><li><tt>XMLCipher.SHA1</tt></li><li><tt>XMLCipher.SHA256</tt></li><li><tt>XMLCipher.SHA512</tt></li></ul>
+</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>mgfAlgorithm</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> EncryptionConstants.MGF1_SHA1 </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.12</b> The MGF Algorithm to use with the RSA OAEP algorithm. The available choices are:
+<ul><li><tt>EncryptionConstants.MGF1_SHA1</tt></li><li><tt>EncryptionConstants.MGF1_SHA256</tt></li><li><tt>EncryptionConstants.MGF1_SHA512</tt></li></ul>
+</td></tr></tbody></table>
 </div>
 
 

Modified: websites/production/camel/content/cache/main.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/camel/content/xmlsecurity-dataformat.html
==============================================================================
--- websites/production/camel/content/xmlsecurity-dataformat.html (original)
+++ websites/production/camel/content/xmlsecurity-dataformat.html Thu Aug 15 11:19:08 2013
@@ -102,7 +102,7 @@ The XMLSecurity Data Format supports asy
 <table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"> Option </th><th colspan="1" rowspan="1" class="confluenceTh"> Default </th><th colspan="1" rowspan="1" class="confluenceTh"> Description </th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>secureTag</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> The XPath reference to the XML Element selected for encryption/decryption. If no tag is specified, the entire payload is encrypted/decrypted. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>secureTagContents</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> A boolean value to specify whether the XML Element is to be encrypted or the contents of the XML Element
 <ul><li><tt>false</tt> = Element Level</li><li><tt>true</tt> = Element Content Level</li></ul>
 </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>passPhrase</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> A String used as passPhrase to encrypt/decrypt content. The passPhrase has to be provided. If no passPhrase is specified, a default passPhrase is used. The passPhrase needs to be put together in conjunction with the appropriate encryption algorithm. For example using <tt>TRIPLEDES</tt> the passPhase can be a <tt>"Only another 24 Byte key"</tt> </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>xmlCipherAlgorithm</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>TRIPLEDES</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> The cipher algorithm to be used for encryption/decryption of the XML message content. The available choices are:
-<ul><li><tt>XMLCipher.TRIPLEDES</tt></li><li><tt>XMLCipher.AES_128</tt></li><li><tt>XMLCipher.AES_192</tt></li><li><tt>XMLCipher.AES_256</tt></li></ul>
+<ul><li><tt>XMLCipher.TRIPLEDES</tt></li><li><tt>XMLCipher.AES_128</tt></li><li><tt>XMLCipher.AES_128_GCM</tt> <b>Camel 2.12</b></li><li><tt>XMLCipher.AES_192</tt></li><li><tt>XMLCipher.AES_192_GCM</tt> <b>Camel 2.12</b></li><li><tt>XMLCipher.AES_256</tt></li><li><tt>XMLCipher.AES_256_GCM</tt> <b>Camel 2.12</b></li></ul>
 </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>namespaces</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> A map of namespace values indexed by prefix. The index values must match the prefixes used in the <tt>secureTag</tt> XPath query. </td></tr></tbody></table>
 </div>
 
@@ -113,8 +113,12 @@ The XMLSecurity Data Format supports asy
 
 <div class="table-wrap">
 <table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"> Option </th><th colspan="1" rowspan="1" class="confluenceTh"> Default </th><th colspan="1" rowspan="1" class="confluenceTh"> Description </th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>recipientKeyAlias</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> The key alias to be used when retrieving the recipient's public or private key from a KeyStore when performing asymmetric key encryption or decryption. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>keyCipherAlgorithm</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> The cipher algorithm to be used for encryption/decryption of the asymmetric key. The available choices are: 
-<ul><li><tt>XMLCipher.RSA_v1dot5</tt></li><li><tt>XMLCipher.RSA_OAEP</tt></li></ul>
-</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>keyOrTrustStoreParameters</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Configuration options for creating and loading a KeyStore instance that represents the sender's trustStore or recipient's keyStore. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>keyPassword</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.10.2 / 2.11:</b> The password to be used for retrieving the private key from the KeyStore. This key is used for asymmetric decryption. </td></tr></tbody></table>
+<ul><li><tt>XMLCipher.RSA_v1dot5</tt></li><li><tt>XMLCipher.RSA_OAEP</tt></li><li><tt>XMLCipher.RSA_OAEP_11</tt></li></ul>
+</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>keyOrTrustStoreParameters</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> Configuration options for creating and loading a KeyStore instance that represents the sender's trustStore or recipient's keyStore. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>keyPassword</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.10.2 / 2.11:</b> The password to be used for retrieving the private key from the KeyStore. This key is used for asymmetric decryption. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>digestAlgorithm</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> XMLCipher.SHA1 </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.12</b> The digest algorithm to use with the RSA OAEP algorithm
 . The available choices are:
+<ul><li><tt>XMLCipher.SHA1</tt></li><li><tt>XMLCipher.SHA256</tt></li><li><tt>XMLCipher.SHA512</tt></li></ul>
+</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <tt>mgfAlgorithm</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> EncryptionConstants.MGF1_SHA1 </td><td colspan="1" rowspan="1" class="confluenceTd"> <b>Camel 2.12</b> The MGF Algorithm to use with the RSA OAEP algorithm. The available choices are:
+<ul><li><tt>EncryptionConstants.MGF1_SHA1</tt></li><li><tt>EncryptionConstants.MGF1_SHA256</tt></li><li><tt>EncryptionConstants.MGF1_SHA512</tt></li></ul>
+</td></tr></tbody></table>
 </div>