decrypt method
Calls decrypt on the wrapped Algorithm.
Implementation
String decrypt(
Encrypted encrypted, {
IV? iv,
Uint8List? associatedData,
}) {
return convert.utf8.decode(
decryptBytes(encrypted, iv: iv, associatedData: associatedData),
allowMalformed: true,
);
}