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()
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()
def __init__(self): ircoders.clear() ircoders.print_logo() ircoders.md5() self.md5()
def __init__(self): ircoders.clear() ircoders.print_logo() ircoders.sha512() self.sha512()