decrypt method
Implementation
@override
Future<Uint8List> decrypt(Uint8List input) async {
var secretBox = SecretBox.fromConcatenation(
input,
nonceLength: AesGcm.defaultNonceLength,
macLength: 16,
);
return Uint8List.fromList(await algorithm.decrypt(
secretBox,
secretKey: await secretKey,
));
}