aes256gcm

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

aes256gcm

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);
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.