Lines Matching defs:output

335         byte[] output;
338 output = mMainDataStreamer.update(input, inputOffset, inputLen);
344 if (output.length == 0) {
348 return output;
354 byte[] output;
356 output = mAdditionalAuthenticationDataStreamer.doFinal(
364 if ((output != null) && (output.length > 0)) {
366 "AAD update unexpectedly returned data: " + output.length + " bytes");
372 protected final int engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output,
378 int outputAvailable = output.length - outputOffset;
383 System.arraycopy(outputCopy, 0, output, outputOffset, outputCopy.length);
388 protected final int engineUpdate(ByteBuffer input, ByteBuffer output)
393 if (output == null) {
394 throw new NullPointerException("output == null");
412 int outputBufferAvailable = output.remaining();
414 output.put(outputArray);
446 byte[] output;
448 output = mAdditionalAuthenticationDataStreamer.update(input, inputOffset, inputLen);
454 if ((output != null) && (output.length > 0)) {
455 throw new ProviderException("AAD update unexpectedly produced output: "
456 + output.length + " bytes");
500 byte[] output;
506 output = mMainDataStreamer.doFinal(
524 return output;
528 protected final int engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output,
535 int outputAvailable = output.length - outputOffset;
540 System.arraycopy(outputCopy, 0, output, outputOffset, outputCopy.length);
545 protected final int engineDoFinal(ByteBuffer input, ByteBuffer output)
550 if (output == null) {
551 throw new NullPointerException("output == null");
569 int outputBufferAvailable = output.remaining();
571 output.put(outputArray);
892 * OAEP the return value should be the size of the OAEP hash output. For RSA with PKCS#1 padding