We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6226d61 commit c8796e3Copy full SHA for c8796e3
nix/tests/util/pgsodium_getkey.sh
@@ -2,7 +2,9 @@
2
3
set -euo pipefail
4
5
+KEY_FILE="${1:-/tmp/pgsodium.key}"
6
+
7
if [[ ! -f "$KEY_FILE" ]]; then
8
head -c 32 /dev/urandom | od -A n -t x1 | tr -d ' \n' > "$KEY_FILE"
9
fi
-cat $KEY_FILE
10
+cat $KEY_FILE
0 commit comments