You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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);