vanphash 2020.0.4 copy "vanphash: ^2020.0.4" to clipboard
vanphash: ^2020.0.4 copied to clipboard

Vanilla Password Hashing or vanphash is a simple password generator library based on hashing, it starts as a legacy alternative to Twik Android app.

example/vanphash_example.dart

import 'package:vanphash/vanphash.dart';
import 'package:vanphash/src/types.dart';

main() {
  String tag = 'tag';
  String master_password = 'master_password';
  String secret_key = 'secret_key';

  print(twik_password(
      tag, master_password, secret_key, 15, PasswordType.special));
  print(custom_password(tag, master_password, secret_key, 15, 3, 3, 3, 3));
  print(vanphash_password(tag, master_password, secret_key));
}
2
likes
40
pub points
0%
popularity

Publisher

unverified uploader

Vanilla Password Hashing or vanphash is a simple password generator library based on hashing, it starts as a legacy alternative to Twik Android app.

Repository (GitLab)
View/report issues

License

GPL-3.0 (LICENSE)

Dependencies

crypto

More

Packages that depend on vanphash