Skip to content
This repository was archived by the owner on Jul 30, 2022. It is now read-only.
/ PChecker Public archive

PChecker is the easy to use Open Source Python password checker designed to make it easy to check passwords in Python. This library allows you to check a password for the usual uppercase letter and number in just one Python While loop. More details are inside the README.txt file.

Notifications You must be signed in to change notification settings

RockBacon9922/PChecker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

PChecker by Will-bit-tech 2019

PChecker is used to check a string of characters if they comply with standard secure password practices.
This could be used to make sure uses create a secure password for a program of system
This program only needs one while loop to work.

First copy the PCheck Folder into your program library
Next import the library into your program with the import command e. g import PC
Nice Next create a while loop. We are going to need to put PC.PC() into the while loop here is an example.
I will put this code in "2ndPCheckerExample" which is included in the same directory as this document.

import PCheck.PC as PC
a = input("input ")
b = 7 #required length of password
while PC.PC(a, b) == False:
	print("password is not good enough")
	a = input("input ")
print("success password matches criteria")

A is a string variable which could be swapped out with whatever your password variable is.
B is an integer which allows you to set the required length of the users password.
At the end the program returns either a True or False depending on if the program found all the password criteria.

If you have got this far without error, I congratulate you well done we are finished. If you can please credit me in your final project.
Other than that thank you for using my library!!!

About

PChecker is the easy to use Open Source Python password checker designed to make it easy to check passwords in Python. This library allows you to check a password for the usual uppercase letter and number in just one Python While loop. More details are inside the README.txt file.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages