diff options
Diffstat (limited to 'priv/make_keys.sh')
| -rw-r--r-- | priv/make_keys.sh | 12 |
1 files changed, 12 insertions, 0 deletions
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 |
