aes256 1.1.0 copy "aes256: ^1.1.0" to clipboard
aes256: ^1.1.0 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: 'text', 
    passphrase: 'passphrase',
);

// decryption
final decrypted = Aes256.decrypt(
    encrypted: encrypted,
    passphrase: 'passphrase',
);
...
copied to clipboard
3
likes
160
points
2.01k
downloads

Publisher

verified publisherknottx.dev

Weekly Downloads

2024.09.13 - 2025.03.28

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

Homepage
Repository (GitHub)
View/report issues

Topics

#aes #aes256

Documentation

API reference

Funding

Consider supporting this project:

github.com

License

MIT (license)

Dependencies

crypto, encrypt

More

Packages that depend on aes256