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

example/cryptor.dart

import 'package:cryptor/cryptor.dart';

void main() {
  final text = 'SOME DATA TO ENCRYPT';
  final password = 'password';

  final encrypted = Cryptor.encrypt(text, password);
  final 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