abcdefghijklmnopqrstuvwxyz		EYMBM EYNMQ EYFVE KLJQD UUTWG C
					EYMBM EYNMQ EYFVE KLJQD UUTWG C

a_bc => EWL



1)  after:
	c = plaintext.charAt(n);	
	num = toInteger(c);
	
	System.out.println("c: " + c + "   num: " + num);

	abc => EYM
	c: a   num: 1
	c: b   num: 2
	c: c   num: 3

	a_bc => EWL
	c: a   num: 1
	c:     num: -32
	c: b   num: 2
	c: c   num: 3

	CONCLUSION: OK.  It should have read the space, -32.



2)  after:
	plainStream[n] = num;
	numArray++;

	System.out.println("num: " + num + "   plainStream[n]: " + plainStream[n]);

	abc => EYM
	num: 1   plainStream[n]: 1
	num: 2   plainStream[n]: 2
	num: 3   plainStream[n]: 3


	a_bc => EWL
	num: 1   plainStream[n]: 1
	num: 2   plainStream[n]: 2
	num: 3   plainStream[n]: 3


	CONCLUSION: OK.  Only A, B, and C should have been inputted into the plainStream.



3)  after:
	cypherNum = keystream + plainStream[n];

	System.out.println("cypherNum (before): " + cypherNum);

    after:
	cypherNum -= 26;

	System.out.println("cypherNum (after): " + cypherNum);
	System.out.println("keystream: " + keystream + "   plainStream[n]: " + plainStream[n]);


