Home | History | Annotate | Download | only in crypto

Lines Matching refs:ois

494     private void readObject(ObjectInputStream ois) throws IOException,
501 seedLength = ois.readLong();
502 counter = ois.readLong();
503 state = ois.readInt();
504 seed[BYTES_OFFSET] = ois.readInt();
511 seed[i] = ois.readInt();
514 seed[HASH_OFFSET + i] = ois.readInt();
520 seed[FRAME_LENGTH] = ois.readInt();
521 seed[FRAME_LENGTH + 1] = ois.readInt();
522 seed[FRAME_LENGTH + 14] = ois.readInt();
523 seed[FRAME_LENGTH + 15] = ois.readInt();
527 seed[i] = ois.readInt();
531 copies[FRAME_LENGTH + EXTRAFRAME_OFFSET + i] = ois.readInt();
535 copies[i] = ois.readInt();
539 seed[HASH_OFFSET + i] = ois.readInt();
543 nextBIndex = ois.readInt();
544 Streams.readFully(ois, nextBytes, nextBIndex, HASHBYTES_TO_USE - nextBIndex);