AES CBC mode with 256-bit key, PKCS7 padding, and random salt.
More...
Available at pub.dev
Try on Demo
import 'package:aes256/aes256.dart'; ... // encryption final encrypted = Aes256.encrypt('text', 'passphrase'); // decryption final decrypted = Aes256.decrypt(encrypted, 'passphrase'); ...
knottx.dev
HomepageRepository (GitHub)View/report issues
#aes #aes256
API reference
Consider supporting this project:github.com
MIT (license)
crypto, encrypt
Packages that depend on aes256
Back