blob: 55cf93bcc490955c6d6b426e46c71fddaf7aac8a [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_92) on Tue Jul 05 10:55:35 EDT 2016 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>AesCipherService (Apache Shiro 1.2.6 API)</title>
<meta name="date" content="2016-07-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="AesCipherService (Apache Shiro 1.2.6 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/AesCipherService.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../org/apache/shiro/crypto/AbstractSymmetricCipherService.html" title="class in org.apache.shiro.crypto"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../org/apache/shiro/crypto/BlowfishCipherService.html" title="class in org.apache.shiro.crypto"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/apache/shiro/crypto/AesCipherService.html" target="_top">Frames</a></li>
<li><a href="AesCipherService.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#methods.inherited.from.class.org.apache.shiro.crypto.DefaultBlockCipherService">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li>Method</li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">org.apache.shiro.crypto</div>
<h2 title="Class AesCipherService" class="title">Class AesCipherService</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li><a href="../../../../org/apache/shiro/crypto/JcaCipherService.html" title="class in org.apache.shiro.crypto">org.apache.shiro.crypto.JcaCipherService</a></li>
<li>
<ul class="inheritance">
<li><a href="../../../../org/apache/shiro/crypto/AbstractSymmetricCipherService.html" title="class in org.apache.shiro.crypto">org.apache.shiro.crypto.AbstractSymmetricCipherService</a></li>
<li>
<ul class="inheritance">
<li><a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html" title="class in org.apache.shiro.crypto">org.apache.shiro.crypto.DefaultBlockCipherService</a></li>
<li>
<ul class="inheritance">
<li>org.apache.shiro.crypto.AesCipherService</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><a href="../../../../org/apache/shiro/crypto/CipherService.html" title="interface in org.apache.shiro.crypto">CipherService</a></dd>
</dl>
<hr>
<br>
<pre>public class <a href="../../../../src-html/org/apache/shiro/crypto/AesCipherService.html#line.40">AesCipherService</a>
extends <a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html" title="class in org.apache.shiro.crypto">DefaultBlockCipherService</a></pre>
<div class="block"><code>CipherService</code> using the <code>AES</code> cipher algorithm for all encryption, decryption, and key operations.
<p/>
The AES algorithm can support key sizes of <code>128</code>, <code>192</code> and <code>256</code> bits<b>*</b>. This implementation
defaults to 128 bits.
<p/>
Note that this class retains the parent class's default <a href="../../../../org/apache/shiro/crypto/OperationMode.html#CBC"><code>CBC</code></a> mode of operation
instead of the typical JDK default of <a href="../../../../org/apache/shiro/crypto/OperationMode.html#ECB"><code>ECB</code></a>. <code>ECB</code> should not be used in
security-sensitive environments because <code>ECB</code> does not allow for initialization vectors, which are
considered necessary for strong encryption. See the <a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html" title="class in org.apache.shiro.crypto"><code>parent class</code></a>'s JavaDoc and the
<a href="../../../../org/apache/shiro/crypto/JcaCipherService.html" title="class in org.apache.shiro.crypto"><code>JcaCipherService</code></a> JavaDoc for more on why the JDK default should not be used and is not
used in this implementation.
<p/>
<b>*</b> Generating and using AES key sizes greater than 128 require installation of the
<a href="http://java.sun.com/javase/downloads/index.jsp">Java Cryptography Extension (JCE) Unlimited Strength
Jurisdiction Policy files</a>.</div>
<dl>
<dt><span class="simpleTagLabel">Since:</span></dt>
<dd>1.0</dd>
</dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/shiro/crypto/AesCipherService.html#AesCipherService--">AesCipherService</a></span>()</code>
<div class="block">Creates a new <a href="../../../../org/apache/shiro/crypto/CipherService.html" title="interface in org.apache.shiro.crypto"><code>CipherService</code></a> instance using the <code>AES</code> cipher algorithm with the following
important cipher default attributes:
Attribute
Value
<a href="../../../../org/apache/shiro/crypto/JcaCipherService.html#setKeySize-int-"><code>keySize</code></a>
<code>128</code> bits
<a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html#setBlockSize-int-"><code>blockSize</code></a>
<code>128</code> bits (required for <code>AES</code>
<a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html#setMode-org.apache.shiro.crypto.OperationMode-"><code>mode</code></a>
<a href="../../../../org/apache/shiro/crypto/OperationMode.html#CBC"><code>CBC</code></a><b>*</b>
<a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html#setPaddingScheme-org.apache.shiro.crypto.PaddingScheme-"><code>paddingScheme</code></a>
<a href="../../../../org/apache/shiro/crypto/PaddingScheme.html#PKCS5"><code>PKCS5</code></a>
<a href="../../../../org/apache/shiro/crypto/JcaCipherService.html#setInitializationVectorSize-int-"><code>initializationVectorSize</code></a>
<code>128</code> bits
<a href="../../../../org/apache/shiro/crypto/JcaCipherService.html#setGenerateInitializationVectors-boolean-"><code>generateInitializationVectors</code></a>
<code>true</code><b>**</b>
<p/>
<b>*</b> The <a href="../../../../org/apache/shiro/crypto/OperationMode.html#CBC"><code>CBC</code></a> operation mode is used instead of the JDK default <code>ECB</code> to
ensure strong encryption.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.org.apache.shiro.crypto.DefaultBlockCipherService">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;org.apache.shiro.crypto.<a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html" title="class in org.apache.shiro.crypto">DefaultBlockCipherService</a></h3>
<code><a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html#generateInitializationVector-boolean-">generateInitializationVector</a>, <a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html#getBlockSize--">getBlockSize</a>, <a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html#getModeName--">getModeName</a>, <a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html#getPaddingSchemeName--">getPaddingSchemeName</a>, <a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html#getStreamingBlockSize--">getStreamingBlockSize</a>, <a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html#getStreamingModeName--">getStreamingModeName</a>, <a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html#getStreamingPaddingSchemeName--">getStreamingPaddingSchemeName</a>, <a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html#getTransformationString-boolean-">getTransformationString</a>, <a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html#isGenerateInitializationVectors-boolean-">isGenerateInitializationVectors</a>, <a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html#setBlockSize-int-">setBlockSize</a>, <a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html#setMode-org.apache.shiro.crypto.OperationMode-">setMode</a>, <a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html#setModeName-java.lang.String-">setModeName</a>, <a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html#setPaddingScheme-org.apache.shiro.crypto.PaddingScheme-">setPaddingScheme</a>, <a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html#setPaddingSchemeName-java.lang.String-">setPaddingSchemeName</a>, <a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html#setStreamingBlockSize-int-">setStreamingBlockSize</a>, <a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html#setStreamingMode-org.apache.shiro.crypto.OperationMode-">setStreamingMode</a>, <a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html#setStreamingModeName-java.lang.String-">setStreamingModeName</a>, <a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html#setStreamingPaddingScheme-org.apache.shiro.crypto.PaddingScheme-">setStreamingPaddingScheme</a>, <a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html#setStreamingPaddingSchemeName-java.lang.String-">setStreamingPaddingSchemeName</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.org.apache.shiro.crypto.AbstractSymmetricCipherService">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;org.apache.shiro.crypto.<a href="../../../../org/apache/shiro/crypto/AbstractSymmetricCipherService.html" title="class in org.apache.shiro.crypto">AbstractSymmetricCipherService</a></h3>
<code><a href="../../../../org/apache/shiro/crypto/AbstractSymmetricCipherService.html#generateNewKey--">generateNewKey</a>, <a href="../../../../org/apache/shiro/crypto/AbstractSymmetricCipherService.html#generateNewKey-int-">generateNewKey</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.org.apache.shiro.crypto.JcaCipherService">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;org.apache.shiro.crypto.<a href="../../../../org/apache/shiro/crypto/JcaCipherService.html" title="class in org.apache.shiro.crypto">JcaCipherService</a></h3>
<code><a href="../../../../org/apache/shiro/crypto/JcaCipherService.html#decrypt-byte:A-byte:A-">decrypt</a>, <a href="../../../../org/apache/shiro/crypto/JcaCipherService.html#decrypt-java.io.InputStream-java.io.OutputStream-byte:A-">decrypt</a>, <a href="../../../../org/apache/shiro/crypto/JcaCipherService.html#encrypt-byte:A-byte:A-">encrypt</a>, <a href="../../../../org/apache/shiro/crypto/JcaCipherService.html#encrypt-java.io.InputStream-java.io.OutputStream-byte:A-">encrypt</a>, <a href="../../../../org/apache/shiro/crypto/JcaCipherService.html#ensureSecureRandom--">ensureSecureRandom</a>, <a href="../../../../org/apache/shiro/crypto/JcaCipherService.html#getAlgorithmName--">getAlgorithmName</a>, <a href="../../../../org/apache/shiro/crypto/JcaCipherService.html#getDefaultSecureRandom--">getDefaultSecureRandom</a>, <a href="../../../../org/apache/shiro/crypto/JcaCipherService.html#getInitializationVectorSize--">getInitializationVectorSize</a>, <a href="../../../../org/apache/shiro/crypto/JcaCipherService.html#getKeySize--">getKeySize</a>, <a href="../../../../org/apache/shiro/crypto/JcaCipherService.html#getSecureRandom--">getSecureRandom</a>, <a href="../../../../org/apache/shiro/crypto/JcaCipherService.html#getStreamingBufferSize--">getStreamingBufferSize</a>, <a href="../../../../org/apache/shiro/crypto/JcaCipherService.html#isGenerateInitializationVectors--">isGenerateInitializationVectors</a>, <a href="../../../../org/apache/shiro/crypto/JcaCipherService.html#setGenerateInitializationVectors-boolean-">setGenerateInitializationVectors</a>, <a href="../../../../org/apache/shiro/crypto/JcaCipherService.html#setInitializationVectorSize-int-">setInitializationVectorSize</a>, <a href="../../../../org/apache/shiro/crypto/JcaCipherService.html#setKeySize-int-">setKeySize</a>, <a href="../../../../org/apache/shiro/crypto/JcaCipherService.html#setSecureRandom-java.security.SecureRandom-">setSecureRandom</a>, <a href="../../../../org/apache/shiro/crypto/JcaCipherService.html#setStreamingBufferSize-int-">setStreamingBufferSize</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true#toString--" title="class or interface in java.lang">toString</a>, <a href="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="AesCipherService--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>AesCipherService</h4>
<pre>public&nbsp;<a href="../../../../src-html/org/apache/shiro/crypto/AesCipherService.html#line.86">AesCipherService</a>()</pre>
<div class="block">Creates a new <a href="../../../../org/apache/shiro/crypto/CipherService.html" title="interface in org.apache.shiro.crypto"><code>CipherService</code></a> instance using the <code>AES</code> cipher algorithm with the following
important cipher default attributes:
<table>
<tr>
<th>Attribute</th>
<th>Value</th>
</tr>
<tr>
<td><a href="../../../../org/apache/shiro/crypto/JcaCipherService.html#setKeySize-int-"><code>keySize</code></a></td>
<td><code>128</code> bits</td>
</tr>
<tr>
<td><a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html#setBlockSize-int-"><code>blockSize</code></a></td>
<td><code>128</code> bits (required for <code>AES</code></td>
</tr>
<tr>
<td><a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html#setMode-org.apache.shiro.crypto.OperationMode-"><code>mode</code></a></td>
<td><a href="../../../../org/apache/shiro/crypto/OperationMode.html#CBC"><code>CBC</code></a><b>*</b></td>
</tr>
<tr>
<td><a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html#setPaddingScheme-org.apache.shiro.crypto.PaddingScheme-"><code>paddingScheme</code></a></td>
<td><a href="../../../../org/apache/shiro/crypto/PaddingScheme.html#PKCS5"><code>PKCS5</code></a></td>
</tr>
<tr>
<td><a href="../../../../org/apache/shiro/crypto/JcaCipherService.html#setInitializationVectorSize-int-"><code>initializationVectorSize</code></a></td>
<td><code>128</code> bits</td>
</tr>
<tr>
<td><a href="../../../../org/apache/shiro/crypto/JcaCipherService.html#setGenerateInitializationVectors-boolean-"><code>generateInitializationVectors</code></a></td>
<td><code>true</code><b>**</b></td>
</tr>
</table>
<p/>
<b>*</b> The <a href="../../../../org/apache/shiro/crypto/OperationMode.html#CBC"><code>CBC</code></a> operation mode is used instead of the JDK default <code>ECB</code> to
ensure strong encryption. <code>ECB</code> should not be used in security-sensitive environments - see the
<a href="../../../../org/apache/shiro/crypto/DefaultBlockCipherService.html" title="class in org.apache.shiro.crypto"><code>DefaultBlockCipherService</code></a> class JavaDoc's &quot;Operation Mode&quot; section
for more.
<p/>
<b>**</b>In conjunction with the default <code>CBC</code> operation mode, initialization vectors are generated by
default to ensure strong encryption. See the <a href="../../../../org/apache/shiro/crypto/JcaCipherService.html" title="class in org.apache.shiro.crypto"><code>JcaCipherService</code></a> class JavaDoc for more.</div>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/AesCipherService.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../org/apache/shiro/crypto/AbstractSymmetricCipherService.html" title="class in org.apache.shiro.crypto"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../org/apache/shiro/crypto/BlowfishCipherService.html" title="class in org.apache.shiro.crypto"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/apache/shiro/crypto/AesCipherService.html" target="_top">Frames</a></li>
<li><a href="AesCipherService.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#methods.inherited.from.class.org.apache.shiro.crypto.DefaultBlockCipherService">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li>Method</li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2004-2016 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All Rights Reserved.</small></p>
</body>
</html>