check_password: Check password

Description Usage Arguments Details See Also Examples

Description

zxcvbn is a password strength estimator inspired by password crackers. Through pattern matching and conservative estimation, it recognizes and weighs 30k common passwords, common names and surnames according to US census data, popular English words from Wikipedia and US television and movies, and other common patterns like dates, repeats (aaa), sequences (abcd), keyboard patterns (qwertyuiop), and l33t speak.

Usage

1
check_password(password)

Arguments

password

Character string to assess

Details

The main result is returned as an invisible list.

This package provides an R interface to the underlying Javascript code. See the GitHub homepage for further details about the JS library. @details The function returns a list with the following components

See Also

https://github.com/dropbox/zxcvbn and this blog post

Examples

1
2
res = check_password("ABC")
res$feedback

jumpingrivers/zxcvbnR documentation built on May 8, 2019, 11:12 p.m.