aes256 1.0.3 copy "aes256: ^1.0.3" to clipboard
aes256: ^1.0.3 copied to clipboard

AES CBC mode with 256-bit key, PKCS7 padding, and random salt.

AES256 #

https://pub.dev/packages/aes256

AES CBC mode with 256-bit key, PKCS7 padding, and random salt.

Try Demo.

import 'package:aes256/aes256.dart';

...
// encryption
final encrypted = await Aes256.encrypt("text", "passphrase");

// decryption
final decrypted = await Aes256.decrypt(encrypted, "passphrase");
...
1
likes
150
pub points
66%
popularity

Publisher

unverified uploader

AES CBC mode with 256-bit key, PKCS7 padding, and random salt.

Homepage
Repository (GitHub)
View/report issues

Topics

#aes #aes256

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

crypto, encrypt

More

Packages that depend on aes256