Guest User

Untitled

a guest
Sep 16th, 2013
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. byte C0 = 0x03;
  2. out.write(C0);
  3. long timestampC1 = System.currentTimeMillis();
  4. byte[] randC1 = new byte[1528];
  5. rand.nextBytes(randC1);
  6. out.writeInt((int)timestampC1);
  7. out.writeInt(0);
  8. out.write(randC1, 0, 1528);
  9. out.flush();
  10. byte S0 = (byte)in.read();
Advertisement
Add Comment
Please, Sign In to add comment