how to encrypt text in python using tkinter -
i want encrypt piece of text, if type in password come stars or dots i'm using tkinter if matters. in entry part can users password encrypted?
w2 = label(root, text="password") w2.pack() e1 = entry(root) e1.pack()
e1 = entry( root, show= '*', textvariable = passport )
Comments
Post a Comment