decryptBytes method
Calls decrypt on the wrapped Algorith without UTF-8 decoding.
Implementation
List<int> decryptBytes(Encrypted encrypted,
{IV? iv, Uint8List? associatedData}) {
return algo
.decrypt(encrypted, iv: iv, associatedData: associatedData)
.toList();
}