https://github.com/sahal-mulki/easy_pass
A library for handling passwords and hashes
https://github.com/sahal-mulki/easy_pass
hash password password-manager sha-256
Last synced: 5 days ago
JSON representation
A library for handling passwords and hashes
- Host: GitHub
- URL: https://github.com/sahal-mulki/easy_pass
- Owner: sahal-mulki
- License: mit
- Created: 2021-02-01T11:36:21.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-11-29T19:24:37.000Z (11 months ago)
- Last Synced: 2024-12-02T03:17:09.780Z (11 months ago)
- Topics: hash, password, password-manager, sha-256
- Language: Python
- Homepage: https://pypi.org/project/easy-pass/
- Size: 23.4 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eAsy*_*pa_ss

This library I made is for managing hashes and passwords. It is hopefully easy to use and implements the SHA-256 algorithm.# Usage
```
import easy_passpassobject = easy_pass.Password(password="password", # hash the word "password"
iters=500000) # hash it using 5000 iterationspassobject.hash # display the word "password"'s hash
validation = easy_pass.validate(hash1 = passobject.hash, # is passobject.hash the same as the hash as of "password1"
password = "password1",
iters2 = 500000)
```