diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2016-01-22 13:26:25 -0500 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2016-01-22 13:26:25 -0500 |
commit | 44ae6cd19b952e927ec636d70e2c84d5b60b590b (patch) | |
tree | e358b7def421ef7c2414e13897f4b124934efa1d /tests | |
parent | f0546c66551099b69a69b6d3db9b439aeb8bea08 (diff) | |
parent | a418e96e08537e77b86c7eff8975e0c76b251797 (diff) | |
download | cryptography-44ae6cd19b952e927ec636d70e2c84d5b60b590b.tar.gz cryptography-44ae6cd19b952e927ec636d70e2c84d5b60b590b.tar.bz2 cryptography-44ae6cd19b952e927ec636d70e2c84d5b60b590b.zip |
Merge pull request #2682 from reaperhulk/fernet-change
fernet fix: ignore the timestamp entirely when no ttl is set
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_fernet.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/test_fernet.py b/tests/test_fernet.py index 0b93f017..c272eec0 100644 --- a/tests/test_fernet.py +++ b/tests/test_fernet.py @@ -103,6 +103,15 @@ class TestFernet(object): with pytest.raises(TypeError): f.decrypt(u"") + def test_timestamp_ignored_no_ttl(self, monkeypatch, backend): + f = Fernet(base64.urlsafe_b64encode(b"\x00" * 32), backend=backend) + pt = b"encrypt me" + token = f.encrypt(pt) + ts = "1985-10-26T01:20:01-07:00" + current_time = calendar.timegm(iso8601.parse_date(ts).utctimetuple()) + monkeypatch.setattr(time, "time", lambda: current_time) + assert f.decrypt(token, ttl=None) == pt + @pytest.mark.parametrize("message", [b"", b"Abc!", b"\x00\xFF\x00\x80"]) def test_roundtrips(self, message, backend): f = Fernet(Fernet.generate_key(), backend=backend) |