Files
packages/lang/python/python-cryptography/test.sh
Jeffery To 672a209367 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>
(cherry picked from commit c4a223ed87)
2023-12-08 22:44:26 +08:00

15 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