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

AES-256-GCM symmetric encryption functions that allow to encrypt/decrypt package

aes-256-gcm-dart #

AES 256 GCM encryption algorithm in Dart

Use #

var text = 'SOME DATA TO ENCRYPT';
var password = 'password';

var encrypted = Aes256Gcm.encrypt(text, password);
var decrypted = Aes256Gcm.decrypt(encrypted, password);

print(encrypted);
print(decrypted);
6
likes
120
pub points
76%
popularity

Publisher

verified publishergetswifty.pro

AES-256-GCM symmetric encryption functions that allow to encrypt/decrypt package

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

convert, cryptography

More

Packages that depend on aes256gcm