https://github.com/mduo13/sha512half
https://github.com/mduo13/sha512half
cryptography python3 sha512 sha512half
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mduo13/sha512half
- Owner: mDuo13
- License: mit
- Created: 2017-02-14T01:10:38.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-14T01:11:57.000Z (over 8 years ago)
- Last Synced: 2025-01-04T07:32:13.397Z (5 months ago)
- Topics: cryptography, python3, sha512, sha512half
- Language: Python
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# SHA-512Half Commandline Utility
This is a simple Python 3 script that prints the SHA-512Half value of an input string. SHA-512Half is a secure hash function that uses the first half of the SHA-512 output. (This has the same security as SHA-256, but is faster to calculate on 64-bit processors.)
Usage:
```bash
$ ./sha512half "mDuo13 is cool"
F1607C25DC3660C878802A69C8EF8E11AE62172F3A6C40F5C6CD85AB5E407A87
```You might need to set the script as executable (`chmod +x`) first, or edit the shebang if `/usr/env python3` doesn't point to your Python 3 interpreter.