attrib.put(ARCFour.ARCFOUR_KEY_MATERIAL, new byte[0]);
byte[] b1 = new byte[16];
byte[] b2 = new byte[16];
IRandom r1 = PRNGFactory.getInstance(Registry.ARCFOUR_PRNG);
r1.init(attrib);
r1.nextBytes(b1, 0, b1.length);
IRandom r2 = (IRandom) r1.clone();
r1.nextBytes(b1, 0, b1.length);
r2.nextBytes(b2, 0, b1.length);
harness.check(Arrays.equals(b1, b2));
}