Searched refs:pendingXorBytes (Results 1 – 1 of 1) sorted by relevance
43 private int pendingXorBytes; field in AesFlushingCipher75 while (pendingXorBytes > 0) { in update()76 out[outOffset] = (byte) (in[inOffset] ^ flushedBlock[blockSize - pendingXorBytes]); in update()79 pendingXorBytes--; in update()100 pendingXorBytes = blockSize - bytesToFlush; in update()101 written = nonFlushingUpdate(zerosBlock, 0, pendingXorBytes, flushedBlock, 0); in update()