mirror of
https://github.com/linuxserver/docker-ldap-auth.git
synced 2026-02-20 01:01:02 +08:00
8 lines
160 B
Python
8 lines
160 B
Python
#!/bin/sh
|
|
''''which python >/dev/null && exec python "$0" "$@" # '''
|
|
|
|
from cryptography.fernet import Fernet
|
|
|
|
key = Fernet.generate_key()
|
|
print(key.decode())
|