Skip to content

srimani-programmer/password-checker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python Password Checker

A Python package to check vulnerability and strength pf a password.

Usage

# importing the package 
from password_checker import pc4

checker = ps4.PasswordChecker('YOUR_PASSWORD')

# The PasswordChecker will take String as a Argument

# To check vulnerability of a password.

checker.isvulnerable()  # Returns True if it is vulnerable.
# importing the package 
from password_checker import pc4

checker = ps4.PasswordChecker('YOUR_PASSWORD')

# The PasswordChecker will take String as a Argument

# To check Strength of a password.

checker.isstrength()  # Returns True if it is following password policy.

Releases

No releases published

Packages

No packages published

Languages