blob: dd9a6eff9b8d7aa62535c930131b25c483f8c152 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
"""
Test that bild can build Python stuff.
Example Python file that also serves as a test case for bild.
"""
# : out example
# : dep cryptography
import cryptography.fernet
import sys
def cryptic_hello(name: str) -> str:
"""
Encrypt and decrypt `name`.
Example taken from `cryptography` docs.
"""
key = cryptography.fernet.Fernet.generate_key()
f = cryptography.fernet.Fernet(key)
token = f.encrypt(hello(name).encode("utf-8"))
ret = f.decrypt(token).decode("utf-8")
if ret != hello(name):
msg = "en/decryption failed!"
raise ValueError(msg)
return ret
def hello(name: str) -> str:
"""Say hello."""
return f"Hello {name}"
def main() -> None:
"""Entrypoint."""
if "test" in sys.argv:
sys.stdout.write("testing success")
sys.stdout.write(cryptic_hello("world"))
if __name__ == "__main__":
main()
|