HEX
Server: nginx/1.26.1
System: Linux main-vm 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
User: root (0)
PHP: 8.2.19
Disabled: NONE
Upload Files
File: //proc/thread-self/root/usr/share/doc/cryptsetup/examples/gen-ssl-key
#!/bin/sh
#
# script to generate a keyfile that is encrypted with openssl
#
# Written 2005 by Markus Nass <[email protected]>
# Improved 2006 by Jonas Meurer <[email protected]>
# Further improved 2006 by Markus Nass <[email protected]>

usage() {
  echo "Usage: $0 <key>"
  exit 1
}

if [ -z "${1-}" ] || [ "$1" = "-h" ] || [ "$1" = "--help" ]; then
  usage
fi

if [ -x /usr/bin/openssl ]; then
	dd if=/dev/random bs=1c count=256 | openssl enc -aes-256-cbc -e -salt >"$1"
else
	echo "/usr/bin/openssl is not available" && exit 1
fi