From ffa3d553f693494c218a0244c946ba83dfbf7cd1 Mon Sep 17 00:00:00 2001 From: Elizabeth Hunt Date: Sun, 1 Oct 2023 20:41:48 -0600 Subject: init --- priv/.gitignore | 1 + priv/make_keys.sh | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 priv/.gitignore create mode 100644 priv/make_keys.sh (limited to 'priv') diff --git a/priv/.gitignore b/priv/.gitignore new file mode 100644 index 0000000..2744c99 --- /dev/null +++ b/priv/.gitignore @@ -0,0 +1 @@ +keys/ \ No newline at end of file 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