From ffa3d553f693494c218a0244c946ba83dfbf7cd1 Mon Sep 17 00:00:00 2001 From: Elizabeth Hunt Date: Sun, 1 Oct 2023 20:41:48 -0600 Subject: init --- priv/make_keys.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 priv/make_keys.sh (limited to 'priv/make_keys.sh') diff --git a/priv/make_keys.sh b/priv/make_keys.sh new file mode 100644 index 0000000..8d8a872 --- /dev/null +++ b/priv/make_keys.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +if [ ! -d "keys" ] +then + mkdir keys + chmod 700 keys + cd keys + + ssh-keygen -N "" -b 256 -t ecdsa -f ssh_host_ecdsa_key + ssh-keygen -N "" -b 1024 -t dsa -f ssh_host_dsa_key + ssh-keygen -N "" -b 2048 -t rsa -f ssh_host_rsa_key +fi \ No newline at end of file -- cgit v1.3