Skip to content

SafePassPy is a pure-python library used to secure passwords and determine the strength percentage of password also check the passwords breachs, and much more tools

License

Notifications You must be signed in to change notification settings

aymenbrahimdjelloul/SafePassPy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SafePassPy

SafePassPy is a pure-python library used to secure passwords and determine the strength percentage of password also check the passwords breachs, and much more tools

Features

  • Determine Password strength percentage
  • Check your password for password breach through large passwords database
  • Estimated the time to crack your password
  • Make your password more secure and complex with Password salting feature
  • Generate a strong random passwords for you

How It's work ?

SafePassPy uses multiple methods to make you satisfied and feel secure, it uses multiple password measures that have been authorized from specialists in IT and Cyber-Security like Avast and Google, also SafePassPy uses a large passwords database to check password breachs through it

Simple Usage

# First import SafePass module from SafePassPy
from SafePassPy import SafePass

# Create class object named 'password_checker'
# insert the password you'd like to check
password_checker = SafePass.SafePass("1234567890")

# Print out your password strength precentage
print(f"{password_checker.get_password_strength_percent} %")
OUTPUT
 25 %

Advanced Usage

# First import SafePass module from SafePassPy
from SafePassPy import SafePass

# Create class object named 'password_checker'
# insert the password you'd like to check
password_checker = SafePass.SafePass("1234567890")

# Print out the short answer from the returned output
# NOTE : 'check_password_breaches' return a dictionary. check the examples directory 
print(password_checker.check_password_breaches["is_password_breached"])

# print out the crack time for your password in a human-readable format
print(password_checker.estimate_brute_force_time())
OUTPUT
 True

 3 days

License

This project is published under MIT License
MIT License

Copyright (c) 2023 Aymen Brahim Djelloul

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

About

SafePassPy is a pure-python library used to secure passwords and determine the strength percentage of password also check the passwords breachs, and much more tools

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages