Skip to content
This repository was archived by the owner on Feb 12, 2025. It is now read-only.

🔐 AES 256 GCM encryption algorithm in Dart

License

Notifications You must be signed in to change notification settings

AtjonTV/aes-256-gcm-dart

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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);

About

🔐 AES 256 GCM encryption algorithm in Dart

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 100.0%