https://github.com/k4yt3x/multihasher
https://github.com/k4yt3x/multihasher
cryptography hash python
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/k4yt3x/multihasher
- Owner: k4yt3x
- License: gpl-3.0
- Created: 2017-01-03T02:02:24.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-10-27T00:21:55.000Z (over 7 years ago)
- Last Synced: 2025-03-09T22:09:41.601Z (over 1 year ago)
- Topics: cryptography, hash, python
- Language: Python
- Size: 18.6 KB
- Stars: 1
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Multihasher
## Description
Multihasher is A library that helps hash passwords multiple times, rendering the creation of a rainbow table extremely expensive, thus preventing password from being cracked.
## Usages
```python3
from multihasher import Multihasher
hasher = Multihasher()
hasher.multihash('apassword')
```