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

/libcore/luni/src/main/java/javax/crypto/
H A DMac.java437 * output} buffer at offset {@code outOffset}.
445 * @param outOffset
455 public final void doFinal(byte[] output, int outOffset) argument
463 if ((outOffset < 0) || (outOffset >= output.length)) {
464 throw new ShortBufferException("Incorrect outOffset: " + outOffset);
468 if (t > (output.length - outOffset)) {
472 System.arraycopy(result, 0, output, outOffset, result.length);

Completed in 83 milliseconds