Home | History | Annotate | Download | only in brokenkeyderivation

Lines Matching defs:copies

77     // HASHCOPY_OFFSET   - offset for copy of current hash in "copies" array
78 // EXTRAFRAME_OFFSET - offset for extra frame in "copies" array;
81 // FRAME_OFFSET - offset for frame in "copies" array
116 // Structure of "copies" array
121 private transient int[] copies;
197 // remaining bytes are copied into the 21-36 word frame of the "copies" array;
210 copies = new int[2 * FRAME_LENGTH + EXTRAFRAME_OFFSET];
252 System.arraycopy(copies, HASHCOPY_OFFSET, this.seed, HASH_OFFSET,
305 System.arraycopy(seed, HASH_OFFSET, copies, HASHCOPY_OFFSET,
328 // seed or copies array depending on total length after padding
333 copies[EXTRAFRAME_OFFSET + 14] = (int) (bits >>> 32);
334 copies[EXTRAFRAME_OFFSET + 15] = (int) (bits & 0xFFFFFFFF);
376 copies[EXTRAFRAME_OFFSET] = seed[FRAME_LENGTH];
377 copies[EXTRAFRAME_OFFSET + 1] = seed[FRAME_LENGTH + 1];
384 System.arraycopy(seed, 0, copies, FRAME_OFFSET, FRAME_LENGTH);
385 System.arraycopy(copies, EXTRAFRAME_OFFSET, seed, 0,
389 System.arraycopy(copies, FRAME_OFFSET, seed, 0, FRAME_LENGTH);