previous | start | next

To Encrypt Binary Data

int next = in.read();
if (next == -1)
   done = true;
else
{
   byte b = (byte) next;    //call the method to encrypt the byte
   byte c = encrypt(b);
   out.write(c);
}

previous | start | next