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

outdated

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

pipeline status coverage report

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

license.

Usage #

A simple usage example:

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));
}

Features and bugs #

This package is still a beta, further version won't generate passwords compatible with previous versions.

The only feature that won't change its generated passwords is twik_password(...) since it replicates the android applicacion algorithm.

2
likes
0
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

unknown (LICENSE)

Dependencies

crypto

More

Packages that depend on vanphash