如何使用tkinter加密python中的文本

时间:2013-05-13 16:10:16

标签: python tkinter password-encryption

我想加密一段文字,就像有人在哪里输入密码一样,如果重要的话就会出现星星或点我正在使用tkinter的点。在入口部分可以加密用户密码吗?

w2 = Label(root, text="Password")
w2.pack()

e1 = Entry(root)
e1.pack()

2 个答案:

答案 0 :(得分:2)

e1 = Entry( root, show= '*', textvariable = passport )

答案 1 :(得分:0)

您需要的是:

w2 = Label(root, text="Password")
w2.pack()

e1 = Entry(root,show="*")
e1.pack()

这将显示*而不是其他字符。 然后可以添加:

if e1 == "PASSWORD HERE" :
    #What happens if the password is correct
else:
    #What happens if the password is incorrect