Home
last modified time | relevance | path

Searched refs:outputBuffer (Results 1 – 1 of 1) sorted by relevance

/libcore/luni/src/main/java/javax/crypto/
DCipherInputStream.java40 private byte[] outputBuffer; field in CipherInputStream
65 outputBuffer = new byte[bufferSize + ((blockSize > 1) ? 2 * blockSize : 0)]; in CipherInputStream()
96 if ((outputBuffer == null) || (outputBuffer.length < outputSize)) { in fillBuffer()
97 this.outputBuffer = new byte[outputSize]; in fillBuffer()
102 outputLength = cipher.doFinal(outputBuffer, 0); in fillBuffer()
110 outputLength = cipher.update(inputBuffer, 0, byteCount, outputBuffer, 0); in fillBuffer()
133 return outputBuffer[outputIndex++] & 0xFF; in read()
163 System.arraycopy(outputBuffer, outputIndex, buf, off, len); in read()