public RC4(IRandGen cloneFrom) { Init(cloneFrom.NextBuffer(256)); }
public static byte[] NextBuffer(this IRandGen gen, int count) { byte[] buf = new byte[count]; return(gen.NextBuffer(buf)); }