steel_crypt 0.1.2 copy "steel_crypt: ^0.1.2" to clipboard
steel_crypt: ^0.1.2 copied to clipboard

outdated

A collection of high-level API's exposing PointyCastle/encrypt to perform hashing and encrypting in popular/secure algorithms.

example/example.dart

import 'package:steel_crypt/steel_crypt.dart';

main() {

  var key = CryptKey().genKey();

  var encrypter = Crypt(key, 'Salsa20');

  var hasher = HashCrypt('SHA-3');



  print(hasher.hash('a'));

  print(encrypter.encrypt('word'));

  print(encrypter.decrypt(encrypter.encrypt('word')));

  print(key);

}
70
likes
0
pub points
92%
popularity

Publisher

verified publisherkishoredev.live

A collection of high-level API's exposing PointyCastle/encrypt to perform hashing and encrypting in popular/secure algorithms.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

encrypt, pointycastle

More

Packages that depend on steel_crypt