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

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

AES256 #

AES-256 encryption and decryption using PBKDF2 + AES-GCM

Try on Demo

import 'package:aes256/aes256.dart';

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

// decryption
final decrypted = await Aes256.decrypt(
    encrypted: encrypted,
    passphrase: 'passphrase',
);
...
5
likes
0
points
3.17k
downloads

Publisher

verified publisherknottx.dev

Weekly Downloads

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

Homepage
Repository (GitHub)
View/report issues

Topics

#aes #aes256

Funding

Consider supporting this project:

github.com

License

unknown (license)

Dependencies

cryptography

More

Packages that depend on aes256