cryptor 0.1.6 copy "cryptor: ^0.1.6" to clipboard
cryptor: ^0.1.6 copied to clipboard

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

cryptor #

AES-GCM-256 algorithm cryptor

Usage #

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

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

  print(encrypted);
  print(decrypted);
5
likes
40
pub points
0%
popularity

Publisher

verified publishergetswifty.pro

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

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

crypto, flutter, steel_crypt

More

Packages that depend on cryptor