Home | History | Annotate | Download | only in crypto

Lines Matching defs:outputBuffer

40     private byte[] outputBuffer;
41 private int outputIndex; // index of the first byte to return from outputBuffer
42 private int outputLength; // count of the bytes to return from outputBuffer
65 outputBuffer = new byte[bufferSize + ((blockSize > 1) ? 2 * blockSize : 0)];
96 if ((outputBuffer == null) || (outputBuffer.length < outputSize)) {
97 this.outputBuffer = new byte[outputSize];
102 outputLength = cipher.doFinal(outputBuffer, 0);
110 outputLength = cipher.update(inputBuffer, 0, byteCount, outputBuffer, 0);
133 return outputBuffer[outputIndex++] & 0xFF;
163 System.arraycopy(outputBuffer, outputIndex, buf, off, len);