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 was archived by the owner on Jun 23, 2025. It is now read-only.
decrypt incorrect in case of Web release.
the same code decrypt correctly in the debug or encrypt v5.0.1
final key =Key.fromUtf8("key");
final initializationVector =IV.fromLength(16);
final encrypter =Encrypter(AES(key, mode:AESMode.cbc, padding:'PKCS7'));
return encrypter.decrypt64(this, iv: initializationVector);