Decrypts the given encrypted data.
Returns the decrypted data.
String decrypt(String encryptedData) { // Currently only AES-256 is supported return _aesDecrypt(encryptedData); }