diff --git a/example/lib/main.dart b/example/lib/main.dart index a47fa2f..84ab82e 100644 --- a/example/lib/main.dart +++ b/example/lib/main.dart @@ -84,8 +84,8 @@ class _MyAppState extends State { if (encryptedPayload == null || encryptedPayload[0].isEmpty) { output = 'Encrypt before altering payload!'; } else { - // Shuffle payload. - encryptedPayload[0].shuffle(); + // Add 1 to the first byte + encryptedPayload[0][0] += 1; output = 'Payload altered.'; } setState(() {