// // RC4AsciiArt.java // import java.util.*; public class RC4AsciiArt { static int [] key = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 } ; public static void main (String args[]) { // insert code here... System.out.println("Rc4 cipher"); Rc4 s = new Rc4(key,4) ; s.printState() ; for ( int j=0 ; j<100; j++ ) { //System.out.println(s.update()) ; s.update() ; s.printState() ; } } }