![]() |
|
[Python] Encoder - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Python (https://sinister.ly/Forum-Python) +--- Thread: [Python] Encoder (/Thread-Python-Encoder) |
[Python] Encoder - KaiT_AleX - 03-19-2012 UPDATE: Hex + MD5 Encrypter Code: #Encrypter by c0ax
#Greetz baltazar, b0ne, Maxell, MikiSoft, Melvin
#Visit ljuska.org and darkartists.info
print " ___ __ ___ __ _ __ _____ "
print " / _ \___ _____/ /__ / _ | ____/ /_(_)__ / /____ / ___/______ _ __ "
print " / // / _ `/ __/ '_/ / __ |/ __/ __/ (_-</ __(_-< / /__/ __/ -_) |/|/ / "
print "/____/\_,_/_/ /_/\_\ /_/ |_/_/ \__/_/___/\__/___/ \___/_/ \__/|__,__/ "
print " ~ DarkArtists.info"
import sys, md5, time
print "Welcome!\n\n"
print "1. HEX Converter"
print "2. MD5 Encrypter\n\n"
izbor = input (" 1 or 2 > ")
if izbor == 1:
try:
print "HEX Converter ~ by c0ax\n"
print "Visit ljuska.org and darkartists.info\n"
he = raw_input("Input word that u want: ")
hex = he.encode('hex')
print "Working ", he
print "\nHex code is", hex
except:
pass
else:
try:
print "MD5 Encrypter ~ by c0ax\n"
print "Visit ljuska.org and darkartists.info\n"
md = raw_input("Input word that u want: ")
mdpet = md5.new()
mdpet = md5.update(md)
passw = mdpet.hexdigest()
print "Encrypted password is: "
time.sleep(2)
print mdpet.hexdigest()
except:
pass
#EOF
#Script by c0ax aka KaiT_AleX
|