Ejemplo n.º 1
0
	def base64(self):
		ircoders.clear()
		ircoders.print_logo()
		ircoders.base64()
		self.getinputb = raw_input(cc + " $ ")
		if self.getinputb == "1":
			self.enc = raw_input(cc + "Enter Your Text to Encode it : ")
			self.base64encode()
		elif self.getinputb == "2":
			self.dec = raw_input(cc + "Enter Your text to decode it : ")
			self.base64decode()
		else:
			print cg + "[ " + cg + "! Unknown Input !" + cr + " ]"
			sys.exit()
Ejemplo n.º 2
0
	def options(self):
		ircoders.clear()
		ircoders.print_logo()
		ircoders.options()
		getinput = raw_input(cc + " $ ")
		if getinput == "1":
			base64()
		elif getinput  == "2":
			md5()
		elif getinput == "3":
			sha1()
		elif getinput == "4":
			sha224()
		elif getinput == "5":
			sha256()
		elif getinput == "6":
			sha384()
		elif getinput == "7":
			sha512()
		else:
			print cr + "Unknown Input"
			sys.exit()
Ejemplo n.º 3
0
	def __init__(self):
		ircoders.clear()
		ircoders.print_logo()
		ircoders.md5()
		self.md5()
Ejemplo n.º 4
0
	def __init__(self):
		ircoders.clear()
		ircoders.print_logo()
		ircoders.sha512()
		self.sha512()