Author: buildbot
Date: Wed Sep 18 09:19:41 2013
New Revision: 878926

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/crypto.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 Wed Sep 18 
09:19:41 2013
@@ -3558,11 +3558,11 @@ from("jms://queue:customerServiceQueue")
 <p><b>Available as of Camel 2.3</b><br clear="none">
 <b>PGP Available as of Camel 2.9</b></p>
 
-<p>The Crypto <a shape="rect" href="data-format.html" title="Data Format">Data 
Format</a> integrates the Java Cryptographic Extension into Camel, allowing 
simple and flexible encryption and decryption of messages using Camel's 
familiar marshall and unmarshal formatting mechanism. It assumes marshalling to 
mean encryption to cyphertext and unmarshalling to mean decryption back to the 
original plaintext.</p>
+<p>The Crypto <a shape="rect" href="data-format.html" title="Data Format">Data 
Format</a> integrates the Java Cryptographic Extension into Camel, allowing 
simple and flexible encryption and decryption of messages using Camel's 
familiar marshall and unmarshal formatting mechanism. It assumes marshalling to 
mean encryption to cyphertext and unmarshalling to mean decryption back to the 
original plaintext. This data format implements only symmetric (shared-key) 
encryption and decyption.</p>
 
 <h3><a shape="rect" name="BookDataFormatAppendix-Options"></a>Options</h3>
 <div class="confluenceTableSmall"><div class="table-wrap">
-<table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" 
class="confluenceTh"> Name </th><th colspan="1" rowspan="1" 
class="confluenceTh"> Type </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>algorithm</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>String</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>DES/CBC/PKCS5Padding</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> The JCE algorithm name indicating the 
cryptographic algorithm that will be used. </td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>algorithmParamterSpec</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> <tt>AlgorithmParameterSpec</tt> 
</td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd">A JCE AlgorithmParameterSpec u
 sed to initialize the Cipher. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>bufferSize</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>Integer</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>2048</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> the size of the buffer used in the signature process. 
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>cryptoProvider</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>String</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> The name 
of the JCE Security Provider that should be used. </td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>initializationVector</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> <tt>byte[]</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> A 
 byte array containing the Initialization Vector that will be used to 
initialize the Cipher. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>inline</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>boolean</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> Flag indicating that the configured IV should be inlined 
into the encrypted data stream. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>macAlgorithm</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>String</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> The JCE algorithm name indicating the Message 
Authentication algorithm. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>shouldAppendHMAC</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>boolean</tt> </td><td colspan="1" row
 span="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> Flag indicating that a Message Authentication Code should 
be calculated and appended to the encrypted data.</td></tr></tbody></table>
+<table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" 
class="confluenceTh"> Name </th><th colspan="1" rowspan="1" 
class="confluenceTh"> Type </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>algorithm</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>String</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>DES/CBC/PKCS5Padding</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> The JCE algorithm name indicating the 
cryptographic algorithm that will be used. </td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>algorithmParameterSpec</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> 
<tt>java.security.spec.AlgorithmParameterSpec</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd">A JCE Algo
 rithmParameterSpec used to initialize the Cipher. </td></tr><tr><td 
colspan="1" rowspan="1" class="confluenceTd"> <tt>bufferSize</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> <tt>Integer</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> <tt>2048</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> the size of the buffer used in 
the signature process. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>cryptoProvider</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>String</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> The name of the JCE Security Provider that should be 
used. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>initializationVector</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>byte[]</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" clas
 s="confluenceTd"> A byte array containing the Initialization Vector that will 
be used to initialize the Cipher. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>inline</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>boolean</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> Flag indicating that the configured IV should be inlined 
into the encrypted data stream. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>macAlgorithm</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>String</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> The JCE algorithm name indicating the Message 
Authentication algorithm. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>shouldAppendHMAC</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>boolean</tt> </td
 ><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td 
 >colspan="1" rowspan="1" class="confluenceTd"> Flag indicating that a Message 
 >Authentication Code should be calculated and appended to the encrypted 
 >data.</td></tr></tbody></table>
 </div>
 </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 Wed Sep 18 09:19:41 
2013
@@ -14652,11 +14652,11 @@ from("jms://queue:customerServiceQueue")
 <p><b>Available as of Camel 2.3</b><br clear="none">
 <b>PGP Available as of Camel 2.9</b></p>
 
-<p>The Crypto <a shape="rect" href="data-format.html" title="Data Format">Data 
Format</a> integrates the Java Cryptographic Extension into Camel, allowing 
simple and flexible encryption and decryption of messages using Camel's 
familiar marshall and unmarshal formatting mechanism. It assumes marshalling to 
mean encryption to cyphertext and unmarshalling to mean decryption back to the 
original plaintext.</p>
+<p>The Crypto <a shape="rect" href="data-format.html" title="Data Format">Data 
Format</a> integrates the Java Cryptographic Extension into Camel, allowing 
simple and flexible encryption and decryption of messages using Camel's 
familiar marshall and unmarshal formatting mechanism. It assumes marshalling to 
mean encryption to cyphertext and unmarshalling to mean decryption back to the 
original plaintext. This data format implements only symmetric (shared-key) 
encryption and decyption.</p>
 
 <h3><a shape="rect" name="BookInOnePage-Options"></a>Options</h3>
 <div class="confluenceTableSmall"><div class="table-wrap">
-<table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" 
class="confluenceTh"> Name </th><th colspan="1" rowspan="1" 
class="confluenceTh"> Type </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>algorithm</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>String</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>DES/CBC/PKCS5Padding</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> The JCE algorithm name indicating the 
cryptographic algorithm that will be used. </td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>algorithmParamterSpec</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> <tt>AlgorithmParameterSpec</tt> 
</td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd">A JCE AlgorithmParameterSpec u
 sed to initialize the Cipher. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>bufferSize</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>Integer</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>2048</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> the size of the buffer used in the signature process. 
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>cryptoProvider</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>String</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> The name 
of the JCE Security Provider that should be used. </td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>initializationVector</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> <tt>byte[]</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> A 
 byte array containing the Initialization Vector that will be used to 
initialize the Cipher. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>inline</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>boolean</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> Flag indicating that the configured IV should be inlined 
into the encrypted data stream. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>macAlgorithm</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>String</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> The JCE algorithm name indicating the Message 
Authentication algorithm. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>shouldAppendHMAC</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>boolean</tt> </td><td colspan="1" row
 span="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> Flag indicating that a Message Authentication Code should 
be calculated and appended to the encrypted data.</td></tr></tbody></table>
+<table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" 
class="confluenceTh"> Name </th><th colspan="1" rowspan="1" 
class="confluenceTh"> Type </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>algorithm</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>String</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>DES/CBC/PKCS5Padding</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> The JCE algorithm name indicating the 
cryptographic algorithm that will be used. </td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>algorithmParameterSpec</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> 
<tt>java.security.spec.AlgorithmParameterSpec</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd">A JCE Algo
 rithmParameterSpec used to initialize the Cipher. </td></tr><tr><td 
colspan="1" rowspan="1" class="confluenceTd"> <tt>bufferSize</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> <tt>Integer</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> <tt>2048</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> the size of the buffer used in 
the signature process. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>cryptoProvider</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>String</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> The name of the JCE Security Provider that should be 
used. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>initializationVector</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>byte[]</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" clas
 s="confluenceTd"> A byte array containing the Initialization Vector that will 
be used to initialize the Cipher. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>inline</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>boolean</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> Flag indicating that the configured IV should be inlined 
into the encrypted data stream. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>macAlgorithm</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>String</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> The JCE algorithm name indicating the Message 
Authentication algorithm. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>shouldAppendHMAC</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>boolean</tt> </td
 ><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td 
 >colspan="1" rowspan="1" class="confluenceTd"> Flag indicating that a Message 
 >Authentication Code should be calculated and appended to the encrypted 
 >data.</td></tr></tbody></table>
 </div>
 </div>
 

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

Modified: websites/production/camel/content/crypto.html
==============================================================================
--- websites/production/camel/content/crypto.html (original)
+++ websites/production/camel/content/crypto.html Wed Sep 18 09:19:41 2013
@@ -89,11 +89,11 @@
 <p><b>Available as of Camel 2.3</b><br clear="none">
 <b>PGP Available as of Camel 2.9</b></p>
 
-<p>The Crypto <a shape="rect" href="data-format.html" title="Data Format">Data 
Format</a> integrates the Java Cryptographic Extension into Camel, allowing 
simple and flexible encryption and decryption of messages using Camel's 
familiar marshall and unmarshal formatting mechanism. It assumes marshalling to 
mean encryption to cyphertext and unmarshalling to mean decryption back to the 
original plaintext.</p>
+<p>The Crypto <a shape="rect" href="data-format.html" title="Data Format">Data 
Format</a> integrates the Java Cryptographic Extension into Camel, allowing 
simple and flexible encryption and decryption of messages using Camel's 
familiar marshall and unmarshal formatting mechanism. It assumes marshalling to 
mean encryption to cyphertext and unmarshalling to mean decryption back to the 
original plaintext. This data format implements only symmetric (shared-key) 
encryption and decyption.</p>
 
 <h3><a shape="rect" name="Crypto-Options"></a>Options</h3>
 <div class="confluenceTableSmall"><div class="table-wrap">
-<table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" 
class="confluenceTh"> Name </th><th colspan="1" rowspan="1" 
class="confluenceTh"> Type </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>algorithm</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>String</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>DES/CBC/PKCS5Padding</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> The JCE algorithm name indicating the 
cryptographic algorithm that will be used. </td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>algorithmParamterSpec</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> <tt>AlgorithmParameterSpec</tt> 
</td><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd">A JCE AlgorithmParameterSpec u
 sed to initialize the Cipher. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>bufferSize</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>Integer</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>2048</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> the size of the buffer used in the signature process. 
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>cryptoProvider</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>String</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>null</tt> </td><td colspan="1" rowspan="1" class="confluenceTd"> The name 
of the JCE Security Provider that should be used. </td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>initializationVector</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> <tt>byte[]</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> A 
 byte array containing the Initialization Vector that will be used to 
initialize the Cipher. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>inline</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>boolean</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> Flag indicating that the configured IV should be inlined 
into the encrypted data stream. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>macAlgorithm</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>String</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> The JCE algorithm name indicating the Message 
Authentication algorithm. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>shouldAppendHMAC</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>boolean</tt> </td><td colspan="1" row
 span="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> Flag indicating that a Message Authentication Code should 
be calculated and appended to the encrypted data.</td></tr></tbody></table>
+<table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" 
class="confluenceTh"> Name </th><th colspan="1" rowspan="1" 
class="confluenceTh"> Type </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>algorithm</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>String</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>DES/CBC/PKCS5Padding</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> The JCE algorithm name indicating the 
cryptographic algorithm that will be used. </td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>algorithmParameterSpec</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> 
<tt>java.security.spec.AlgorithmParameterSpec</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd">A JCE Algo
 rithmParameterSpec used to initialize the Cipher. </td></tr><tr><td 
colspan="1" rowspan="1" class="confluenceTd"> <tt>bufferSize</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> <tt>Integer</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> <tt>2048</tt> </td><td 
colspan="1" rowspan="1" class="confluenceTd"> the size of the buffer used in 
the signature process. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>cryptoProvider</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>String</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> The name of the JCE Security Provider that should be 
used. </td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> 
<tt>initializationVector</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>byte[]</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" clas
 s="confluenceTd"> A byte array containing the Initialization Vector that will 
be used to initialize the Cipher. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>inline</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>boolean</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>false</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> Flag indicating that the configured IV should be inlined 
into the encrypted data stream. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>macAlgorithm</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>String</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>null</tt> </td><td colspan="1" rowspan="1" 
class="confluenceTd"> The JCE algorithm name indicating the Message 
Authentication algorithm. </td></tr><tr><td colspan="1" rowspan="1" 
class="confluenceTd"> <tt>shouldAppendHMAC</tt> </td><td colspan="1" 
rowspan="1" class="confluenceTd"> <tt>boolean</tt> </td
 ><td colspan="1" rowspan="1" class="confluenceTd"> <tt>null</tt> </td><td 
 >colspan="1" rowspan="1" class="confluenceTd"> Flag indicating that a Message 
 >Authentication Code should be calculated and appended to the encrypted 
 >data.</td></tr></tbody></table>
 </div>
 </div>
 


Reply via email to