without_prefix = encrypted_data;
}
byte[] cleartext = OpenSSL.decrypt(ALGORITHM, default_key.toCharArray(), without_prefix.getBytes());
return new String(cleartext);
} catch (IOException ex) {
throw new CryptoException(ex.toString());
} catch (GeneralSecurityException ex) {
throw new CryptoException(ex.toString());
}
}