public byte[] decrypt(byte[] encryptedMessage) throws Exception {
   return _cipher.doFinal(encryptedMessage);
 }
 public byte[] encrypt(byte[] clearMessage) throws Exception {
   return _cipher.doFinal(clearMessage);
 }