Example #1
0
 public void println(String s)
 {
     if (s == null)
     {
         s = "null";
     }
     if (Decryptor != null)
     {
         s = TeraCrypt.toUtf(Decryptor.encrypt(s));
     }
     //System.out.println("SERV >> CLIENT:{" + s + "};");
     write(s + (char)0x00);
 }