Beispiel #1
0
 /** @param blowfishKey */
 public NewCrypt(byte[] blowfishKey) {
   _crypt = new BlowfishEngine();
   _crypt.init(true, blowfishKey);
   _decrypt = new BlowfishEngine();
   _decrypt.init(false, blowfishKey);
 }