Last active
December 13, 2016 08:05
-
-
Save aic5/44cf35c06f7a49af41d76855dd52507d to your computer and use it in GitHub Desktop.
[Python] A script for simple hashing in SHA256
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding: utf-8 | |
import hashlib | |
import console | |
def input_string(prompt): | |
value = None | |
while value is None: | |
try: | |
value = raw_input(prompt) | |
except ValueError: | |
print 'Please enter a string' | |
value = None | |
hash_value(value) | |
def hash_value(str_text): | |
print "sha256:" | |
print hashlib.sha256(str_text).hexdigest() | |
def main(): | |
str_original = input_string("Enter text to hash: ") | |
console.clear() | |
title = 'Hash Generator' | |
print 40 * "-" | |
print title | |
print 40 * "-" | |
main() | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment