Exemplo n.º 1
0
def test_invalid():
    hashed = crypt('password')
    assert not verify('password2', hashed)
Exemplo n.º 2
0
def test_valid():
    hashed = crypt('password')
    assert verify('password', hashed)