Searched defs:outputOffset (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/crypto/
H A DExemptionMechanismSpi.java147 * the <code>output</code> buffer, starting at <code>outputOffset</code>
157 * @param outputOffset the offset in <code>output</code> where the result
168 (byte[] output, int outputOffset)
167 engineGenExemptionBlob(byte[] output, int outputOffset) argument
H A DExemptionMechanism.java444 * the <code>output</code> buffer, starting at <code>outputOffset</code>
454 * @param outputOffset the offset in <code>output</code> where the result
466 public final int genExemptionBlob(byte[] output, int outputOffset) argument
473 int n = exmechSpi.engineGenExemptionBlob(output, outputOffset);
H A DNullCipherSpi.java89 int outputOffset) {
91 System.arraycopy(input, inputOffset, output, outputOffset, inputLen);
103 int outputOffset)
106 output, outputOffset);
87 engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
101 engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
H A DCipherSpi.java490 * <code>outputOffset</code> inclusive.
500 * @param outputOffset the offset in <code>output</code> where the result
510 int outputOffset)
618 * <code>outputOffset</code> inclusive.
638 * @param outputOffset the offset in <code>output</code> where the result
659 int outputOffset)
508 engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
657 engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
H A DCipher.java1820 * <code>outputOffset</code> inclusive.
1841 * @param outputOffset the offset in <code>output</code> where the result
1852 byte[] output, int outputOffset)
1859 || outputOffset < 0) {
1868 output, outputOffset);
1984 * <code>outputOffset</code> inclusive.
2002 * @param outputOffset the offset in <code>output</code> where the result
2023 public final int doFinal(byte[] output, int outputOffset) argument
2029 if ((output == null) || (outputOffset < 0)) {
2034 return spi.engineDoFinal(null, 0, 0, output, outputOffset);
1851 update(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
2285 doFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DAESCipher.java259 * <code>outputOffset</code>.
266 * @param outputOffset the offset in <code>output</code> where the result
275 byte[] output, int outputOffset)
278 outputOffset);
327 * <code>outputOffset</code>.
337 * @param outputOffset the offset in <code>output</code> where the result
353 byte[] output, int outputOffset)
357 outputOffset);
274 engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
352 engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
H A DBlowfishCipher.java264 * <code>outputOffset</code>.
271 * @param outputOffset the offset in <code>output</code> where the result
280 byte[] output, int outputOffset)
283 outputOffset);
333 * <code>outputOffset</code>.
343 * @param outputOffset the offset in <code>output</code> where the result
359 byte[] output, int outputOffset)
363 outputOffset);
279 engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
358 engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
H A DDESCipher.java259 * <code>outputOffset</code>.
266 * @param outputOffset the offset in <code>output</code> where the result
275 byte[] output, int outputOffset)
278 outputOffset);
328 * <code>outputOffset</code>.
338 * @param outputOffset the offset in <code>output</code> where the result
354 byte[] output, int outputOffset)
358 outputOffset);
274 engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
353 engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
H A DDESedeCipher.java239 * <code>outputOffset</code>.
246 * @param outputOffset the offset in <code>output</code> where the result
255 byte[] output, int outputOffset)
258 outputOffset);
308 * <code>outputOffset</code>.
318 * @param outputOffset the offset in <code>output</code> where the result
334 byte[] output, int outputOffset)
338 outputOffset);
254 engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
333 engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
H A DPBECipherCore.java369 * <code>outputOffset</code>.
376 * @param outputOffset the offset in <code>output</code> where the result
385 byte[] output, int outputOffset)
388 output, outputOffset);
436 * <code>outputOffset</code>.
446 * @param outputOffset the offset in <code>output</code> where the result
461 byte[] output, int outputOffset)
465 output, outputOffset);
384 update(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
460 doFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
H A DPBEWithMD5AndDESCipher.java261 * <code>outputOffset</code>.
268 * @param outputOffset the offset in <code>output</code> where the result
277 byte[] output, int outputOffset)
281 output, outputOffset);
330 * <code>outputOffset</code>.
340 * @param outputOffset the offset in <code>output</code> where the result
355 byte[] output, int outputOffset)
360 output, outputOffset);
276 engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
354 engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
H A DPBEWithMD5AndTripleDESCipher.java271 * <code>outputOffset</code>.
278 * @param outputOffset the offset in <code>output</code> where the result
287 byte[] output, int outputOffset)
291 output, outputOffset);
340 * <code>outputOffset</code>.
350 * @param outputOffset the offset in <code>output</code> where the result
365 byte[] output, int outputOffset)
370 output, outputOffset);
286 engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
364 engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
H A DCipherCore.java554 * <code>outputOffset</code>.
561 * @param outputOffset the offset in <code>output</code> where the result
570 int outputOffset) throws ShortBufferException {
581 if ((output == null) || ((output.length - outputOffset) < len)) {
606 cipher.decrypt(in, 0, len, output, outputOffset);
608 cipher.encrypt(in, 0, len, output, outputOffset);
624 outputOffset += len;
701 * <code>outputOffset</code>.
711 * @param outputOffset the offset in <code>output</code> where the result
727 int outputOffset)
569 update(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
726 doFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
[all...]
H A DDESedeWrapCipher.java375 byte[] output, int outputOffset)
374 engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
/openjdk7/jdk/test/javax/crypto/Cipher/
H A DByteBuffersNull.java169 byte[] output, int outputOffset)
180 byte[] output, int outputOffset)
168 engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
179 engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument

Completed in 394 milliseconds