summaryrefslogtreecommitdiff
path: root/Biz/Bild/Example.py
blob: 25686fa4611fbbea1b20598e27772fb0acdb207a (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
"""
Example Python file that also serves as a test case for bild.
fernet."""
# : out example
# : dep cryptography
import sys
import cryptography.fernet


def cryptic_hello(name: str) -> str:
    "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")
    assert ret == hello(name)
    return ret


def hello(name: str) -> str:
    "Say hello"
    return f"Hello {name}"


def main() -> None:
    "Entrypoint"
    if "test" in sys.argv:
        print("testing success")
    print(cryptic_hello("world"))


if __name__ == "__main__":
    main()