Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cryptography
/
716dfd02b5f05373f8df4563ad16f26fc5c6f1a5
/
.
/
tests
/
hypothesis
/
test_fernet.py
blob: fd2438033c378c98ecb634a4d80dabfd6f443465 [
file
] [
log
] [
blame
]
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