Lines Matching defs:inLen
253 private void update(byte[] in, int inOfs, int inLen) {
254 if ((inLen == 0) || (in == null)) {
257 if (bufOfs + inLen > (buffer.length - paddingLength)) {
261 System.arraycopy(in, inOfs, buffer, bufOfs, inLen);
262 bufOfs += inLen;
305 protected byte[] engineUpdate(byte[] in, int inOfs, int inLen) {
306 update(in, inOfs, inLen);
311 protected int engineUpdate(byte[] in, int inOfs, int inLen, byte[] out,
313 update(in, inOfs, inLen);
318 protected byte[] engineDoFinal(byte[] in, int inOfs, int inLen)
320 update(in, inOfs, inLen);
325 protected int engineDoFinal(byte[] in, int inOfs, int inLen, byte[] out,
332 update(in, inOfs, inLen);