packages/lang/python/python-cryptography/test.sh
Jeffery To c4a223ed87 python-cryptography: Update to 41.0.5
This also adds a CPE ID for the package and updates the test.sh script
to use an assert.

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
2023-11-02 00:27:30 +08:00

14 lines
245 B
Bash

#!/bin/sh
[ "$1" = python3-cryptography ] || exit 0
python3 - << 'EOF'
from cryptography.fernet import Fernet
key = Fernet.generate_key()
f = Fernet(key)
msg = b"my deep dark secret"
token = f.encrypt(msg)
assert f.decrypt(token) == msg
EOF