An open API service indexing awesome lists of open source software.

https://github.com/k4yt3x/multihasher


https://github.com/k4yt3x/multihasher

cryptography hash python

Last synced: 24 days ago
JSON representation

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')
```