You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 23, 2020. It is now read-only.
tutorials/examples/aes-cbc-registry.dart
line 331
// Encrypt (note must ALWAYS pad to 128-bit block size for AES)
..
pad(utf8.encode(textToEncrypt), 128));
I think this should be
pad(utf8.encode(textToEncrypt), 16));
128 bit = 16 byte
Many thanks for your code.
The text was updated successfully, but these errors were encountered: