Home | History | Annotate | Download | only in crypto

Lines Matching refs:ois

477     private void readObject(ObjectInputStream ois) throws IOException,
484 seedLength = ois.readLong();
485 counter = ois.readLong();
486 state = ois.readInt();
487 seed[BYTES_OFFSET] = ois.readInt();
494 seed[i] = ois.readInt();
497 seed[HASH_OFFSET + i] = ois.readInt();
503 seed[FRAME_LENGTH] = ois.readInt();
504 seed[FRAME_LENGTH + 1] = ois.readInt();
505 seed[FRAME_LENGTH + 14] = ois.readInt();
506 seed[FRAME_LENGTH + 15] = ois.readInt();
510 seed[i] = ois.readInt();
514 copies[FRAME_LENGTH + EXTRAFRAME_OFFSET + i] = ois.readInt();
518 copies[i] = ois.readInt();
522 seed[HASH_OFFSET + i] = ois.readInt();
526 nextBIndex = ois.readInt();
527 Streams.readFully(ois, nextBytes, nextBIndex, HASHBYTES_TO_USE - nextBIndex);