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

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

example/main.dart

import 'package:aes256/aes256.dart';

void main() async {
  // encryption
  final encrypted = await Aes256.encrypt('text', 'passphrase');

  // decryption
  final decrypted = await Aes256.decrypt(encrypted, 'passphrase');
}
1
likes
0
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

License

unknown (license)

Dependencies

crypto, encrypt

More

Packages that depend on aes256