Home | History | Annotate | Download | only in crypto

Lines Matching defs:copies

87     // HASHCOPY_OFFSET   - offset for copy of current hash in "copies" array
88 // EXTRAFRAME_OFFSET - offset for extra frame in "copies" array;
91 // FRAME_OFFSET - offset for frame in "copies" array
128 // Structure of "copies" array
133 private transient int[] copies;
161 // remaining bytes are copied into the 21-36 word frame of the "copies" array;
178 copies = new int[2 * FRAME_LENGTH + EXTRAFRAME_OFFSET];
221 System.arraycopy(copies, HASHCOPY_OFFSET, this.seed, HASH_OFFSET,
310 System.arraycopy(seed, HASH_OFFSET, copies, HASHCOPY_OFFSET,
333 // seed or copies array depending on total length after padding
338 copies[EXTRAFRAME_OFFSET + 14] = (int) (bits >>> 32);
339 copies[EXTRAFRAME_OFFSET + 15] = (int) (bits & 0xFFFFFFFF);
381 copies[EXTRAFRAME_OFFSET] = seed[FRAME_LENGTH];
382 copies[EXTRAFRAME_OFFSET + 1] = seed[FRAME_LENGTH + 1];
389 System.arraycopy(seed, 0, copies, FRAME_OFFSET, FRAME_LENGTH);
390 System.arraycopy(copies, EXTRAFRAME_OFFSET, seed, 0,
394 System.arraycopy(copies, FRAME_OFFSET, seed, 0, FRAME_LENGTH);
454 // so, data to serialize are all the above (two first are in "copies" array)
476 System.arraycopy(copies, FRAME_LENGTH + EXTRAFRAME_OFFSET, intData,
480 System.arraycopy(copies, 0, intData, offset, EXTRAFRAME_OFFSET);
498 copies = new int[2 * FRAME_LENGTH + EXTRAFRAME_OFFSET];
531 copies[FRAME_LENGTH + EXTRAFRAME_OFFSET + i] = ois.readInt();
535 copies[i] = ois.readInt();