Skip to content

Commit

Permalink
updated readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
princenyeche authored Aug 21, 2021
1 parent e3c23ba commit 746211d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,13 @@ c = decode(b, secret, gn)
```
# Use cases
* Safely store a password or token, validate that it is signed before it can be decoded.
* Transmit a large set of strings encrypted with the smallest size possible.
* Transmit a large set of encrypted strings.
* Create your own `cipher block` and be the only one who can decrypt it.

There are other part of the script you can use. To easily create a password checking system use `signs` and `verify_signs` function, this takes a similar example given by python doc for hashlib but with the ability to add a secret.
```python
from mistyfy import signs, verify_signs

user = "prince"
secrets = b'someimportstuff'
password = b"myverypassword"

Expand Down

0 comments on commit 746211d

Please sign in to comment.