password function
- String tag,
- String master_password,
- String secret_key,
- int length
Implementation
password(String tag, String master_password, String secret_key, int length) {
/// Password generator with vanphash security directives
return custom_password(tag, master_password, secret_key, length, 3, 3, 3,
3, length, length, length, length);
}