private byte[] decrypt(String key, byte[] data) throws Exception {
   return DESCoder.decrypt(data, key);
 }