-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgen_key.sh
executable file
·55 lines (40 loc) · 1.26 KB
/
gen_key.sh
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/bin/bash
# setup Bash environment
set -euf -o pipefail
###############################################################################
# functions
###############################################################################
# Prints script usage to stderr
# Arguments:
# None
# Returns:
# None
print_usage() {
cat <<EOF >&2
Generates a 256-bit key for use by lockbox.sh.
Usage: $0 key_path
key_path
Path to output key file.
Example: $0 test.key
EOF
}
###############################################################################
# validate arguments
###############################################################################
echo "[+] Validating arguments..."
# require exactly 1 argument
if [[ $# -ne 1 ]]; then
print_usage
exit 1
fi
# setup variables for arguments
OUTPUT_FILE=$1
###############################################################################
# generate key
###############################################################################
head -c 32 /dev/random > "$OUTPUT_FILE"
echo "[+] Key saved at $OUTPUT_FILE"
###############################################################################
# report status
###############################################################################
echo "[+] Success"