passwordguard: A library for evaluating password strength and estimating cracking time.
Project description
passwordguard 2.0
A library for evaluating password strength and estimating cracking time.
To install use pip install passwordguard
---
### passwordguard
passwordguard is a Python library that provides functionalities to assess the strength of passwords based on length, character sets, and common patterns. It also estimates the time required to crack a password using brute-force methods. Use passwordguard to enhance security measures in your applications by ensuring stronger passwords.
passwordguard includes two main functions:
- `passwordguard.calculate_password_strength` evaluates the strength of a given password.
- `passwordguard.calculate_cracking_time` estimates the time required to crack a given password.
#### Example
Here is an example of how to use the passwordguard library in your Python programs:
```python
from passwordguard import calculate_password_strength, calculate_cracking_time
password="Type the Password"
strength = calculate_password_strength(password)
cracking_time = calculate_cracking_time(password)
print(f"Password: {password} - Strength: {strength} - Estimated Cracking Time: {cracking_time}")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
passwordguard-2.0.tar.gz
(2.3 kB
view hashes)
Built Distribution
Close
Hashes for passwordguard-2.0-py3-none-any.whl
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 | 8a2b1395c932ce143947f7a5dbb4dccb62a6c4ad65c68834d3cea98abb7f6bc9 |
|
| MD5 | 90d225d16103a613ff0d0180bec2f54a |
|
| BLAKE2b-256 | 2389da562d52c02f540f7d3e39f40aaffc47737a30adfaf6a9afa4f7482a73c1 |