aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_with_hypothesis.py
blob: fd2438033c378c98ecb634a4d80dabfd6f443465 (plain)
1
2
3
4
5
6
7
8
9
10
11
from hypothesis import given
from hypothesis.strategies import binary

from cryptography.fernet import Fernet


@given(binary())
def test_fernet(data):
    f = Fernet(Fernet.generate_key())
    ct = f.encrypt(data)
    assert f.decrypt(ct) == data