decrypt method

String decrypt(
  1. String encryptedData
)

Decrypts the given encrypted data.

Returns the decrypted data.

Implementation

String decrypt(String encryptedData) {
  // Currently only AES-256 is supported
  return _aesDecrypt(encryptedData);
}