aes256 1.0.7
aes256: ^1.0.7 copied to clipboard
AES CBC mode with 256-bit key, PKCS7 padding, and random salt.
AES256 #
Available at pub.dev
AES CBC mode with 256-bit key, PKCS7 padding, and random salt.
Try on Demo
import 'package:aes256/aes256.dart';
...
// encryption
final encrypted = Aes256.encrypt('text', 'passphrase');
// decryption
final decrypted = Aes256.decrypt(encrypted, 'passphrase');
...
copied to clipboard