本文整理汇总了Python中IPython.lib.passwd方法的典型用法代码示例。如果您正苦于以下问题:Python lib.passwd方法的具体用法?Python lib.passwd怎么用?Python lib.passwd使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IPython.lib
的用法示例。
在下文中一共展示了lib.passwd方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: server
# 需要导入模块: from IPython import lib [as 别名]
# 或者: from IPython.lib import passwd [as 别名]
def server(first_name):
global port
pw = ''
for i in range(8):
pw += random.choice(charset)
pws = passwd(pw)
os.system("sudo docker run -d -t -e 'PW=%s' -e 'PORT=%d' -p %d:%d -m 500m jupserver"
% (pws, port, port, port))
return render_template('server.html', first_name=first_name, port=port, pw=pw)
示例2: test_passwd_structure
# 需要导入模块: from IPython import lib [as 别名]
# 或者: from IPython.lib import passwd [as 别名]
def test_passwd_structure():
p = passwd('passphrase')
algorithm, salt, hashed = p.split(':')
nt.assert_equal(algorithm, 'sha1')
nt.assert_equal(len(salt), salt_len)
nt.assert_equal(len(hashed), 40)
示例3: test_roundtrip
# 需要导入模块: from IPython import lib [as 别名]
# 或者: from IPython.lib import passwd [as 别名]
def test_roundtrip():
p = passwd('passphrase')
nt.assert_equal(passwd_check(p, 'passphrase'), True)
示例4: test_bad
# 需要导入模块: from IPython import lib [as 别名]
# 或者: from IPython.lib import passwd [as 别名]
def test_bad():
p = passwd('passphrase')
nt.assert_equal(passwd_check(p, p), False)
nt.assert_equal(passwd_check(p, 'a:b:c:d'), False)
nt.assert_equal(passwd_check(p, 'a:b'), False)