Skip to content

Instantly share code, notes, and snippets.

@aic5
Last active December 13, 2016 08:05
Show Gist options
  • Save aic5/44cf35c06f7a49af41d76855dd52507d to your computer and use it in GitHub Desktop.
Save aic5/44cf35c06f7a49af41d76855dd52507d to your computer and use it in GitHub Desktop.
[Python] A script for simple hashing in SHA256
# 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