コード例 #1
0
ファイル: Util.java プロジェクト: gubo/slipwire
 public static void main(final String[] args) {
   try {
     final String encrypted = Util.encrypt("fred flintstone");
     final String decrypted = Util.decrypt(encrypted);
     DBG.m(encrypted + " / " + decrypted);
   } catch (Exception x) {
     DBG.m(x);
   }
 }
コード例 #2
0
ファイル: Util.java プロジェクト: gubo/slipwire
 public static void test() {
   Util.main(new String[] {});
 }