Searched defs:cipherLen (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DCipherTextStealing.java149 * <code>cipherLen</code> is a multiple of the embedded cipher's block
158 * @param cipherLen the length of the input data
162 void decryptFinal(byte[] cipher, int cipherOffset, int cipherLen, argument
165 if (cipherLen < blockSize) {
167 } else if (cipherLen == blockSize) {
168 decrypt(cipher, cipherOffset, cipherLen, plain, plainOffset);
171 int nLeft = cipherLen % blockSize;
174 int lastBlkIndex = cipherOffset + cipherLen - blockSize;
176 cipherOffset + cipherLen - 2*blockSize;
181 int cipherLen2 = cipherLen
[all...]
H A DCipherBlockChaining.java165 * <code>cipherLen</code> is a multiple of the embedded cipher's block
174 * @param cipherLen the length of the input data
182 void decrypt(byte[] cipher, int cipherOffset, int cipherLen, argument
187 int endIndex = cipherOffset + cipherLen;
H A DCipherFeedback.java209 * <code>cipherLen</code> is a multiple of the stream unit size
218 * @param cipherLen the length of the input data
222 void decrypt(byte[] cipher, int cipherOffset, int cipherLen, argument
227 int loopCount = cipherLen / numBytes;
228 int oddBytes = cipherLen % numBytes;
H A DOutputFeedback.java210 * <code>cipherLen</code> is a multiple of the stream unit size
219 * @param cipherLen the length of the input data
223 void decrypt(byte[] cipher, int cipherOffset, int cipherLen, argument
227 encrypt(cipher, cipherOffset, cipherLen, plain, plainOffset);
H A DPCBC.java167 * <code>cipherLen</code> is a multiple of the embedded cipher's block
176 * @param cipherLen the length of the input data
180 void decrypt(byte[] cipher, int cipherOffset, int cipherLen, argument
184 int endIndex = cipherOffset + cipherLen;
H A DFeedbackCipher.java163 * and ending at <code>(cipherOffset+cipherLen-1)</code>, is decrypted.
172 * @param cipherLen the length of the input data
176 abstract void decrypt(byte[] cipher, int cipherOffset, int cipherLen, argument
190 * @param cipherLen the length of the input data
194 void decryptFinal(byte[] cipher, int cipherOffset, int cipherLen, argument
197 decrypt(cipher, cipherOffset, cipherLen, plain, plainOffset);

Completed in 50 milliseconds