摘要:
来源:http://www.cnblogs.com/superxuezhazha/p/5714970.html 阅读全文
posted @ 2017-04-27 14:09
道高一尺
阅读(281)
评论(0)
推荐(0)
摘要:
digest-MD5认证机制是基于MD5算法的LINUX安全机制认证。 会比较用户端传送的杂凑值与使用者密码的杂凑值,以认证用户端。 但由于此机制必须读取使用者密码,因此,所有想透过digest-MD5进行认证的使用者, 在目录中都必须要有{clear}密码。 将{clear}密码储存到目录时,透过 阅读全文
posted @ 2017-04-27 13:25
道高一尺
阅读(1443)
评论(0)
推荐(0)
摘要:
1 #检查文本 2 from tkinter import * 3 import hashlib 4 5 master=Tk() 6 text = Text(master,width=30,height=5) 7 text.pack() 8 text.insert(INSERT,'I love coding!') 9 content = text.get('1.0',END)... 阅读全文
posted @ 2017-04-27 13:16
道高一尺
阅读(231)
评论(0)
推荐(0)
摘要:
1 from tkinter import * 2 import webbrowser 3 4 master=Tk() 5 6 text=Text(master,width=50,height=20) 7 text.pack() 8 text.insert(INSERT,'I love FishC.com!') 9 text.tag_add('link','1.7','1.... 阅读全文
posted @ 2017-04-27 12:48
道高一尺
阅读(766)
评论(0)
推荐(0)