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

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

AES256 #

AES-256-GCM encryption and decryption

  • Hash Algo: SHA256
  • KDF: PBKDF2
  • Iterations: 100,000

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',
);
...
3
likes
160
points
3.66k
downloads

Publisher

verified publisherknottx.dev

Weekly Downloads

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

Homepage
Repository (GitHub)
View/report issues

Topics

#aes #aes256 #aes-gcm #gcm #pbkdf2

Documentation

API reference

Funding

Consider supporting this project:

github.com

License

MIT (license)

Dependencies

crypto, cryptography, encrypt

More

Packages that depend on aes256