##// END OF EJS Templates
Stop support for 3.7 on the master branch....
Stop support for 3.7 on the master branch. According to NEP 29, Python 3.7 support can be stopped this december. https://numpy.org/neps/nep-0029-deprecation_policy.html Here we start dropping support for 3.7 as we'll release 8.0 likely early 2022

File last commit:

r26725:76446185
r27132:5b9aa9c8
Show More
test_security.py
27 lines | 757 B | text/x-python | PythonLexer
# coding: utf-8
from IPython.lib import passwd
from IPython.lib.security import passwd_check, salt_len
def test_passwd_structure():
p = passwd("passphrase")
algorithm, salt, hashed = p.split(":")
assert algorithm == "sha1"
assert len(salt) == salt_len
assert len(hashed) == 40
def test_roundtrip():
p = passwd("passphrase")
assert passwd_check(p, "passphrase") is True
def test_bad():
p = passwd('passphrase')
assert passwd_check(p, p) is False
assert passwd_check(p, "a:b:c:d") is False
assert passwd_check(p, "a:b") is False
def test_passwd_check_unicode():
# GH issue #4524
phash = u'sha1:23862bc21dd3:7a415a95ae4580582e314072143d9c382c491e4f'
assert passwd_check(phash, u"łe¶ŧ←↓→")