summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimponic <loganhunt@simponic.xyz>2022-12-21 14:05:10 -0700
committerSimponic <loganhunt@simponic.xyz>2022-12-21 14:05:10 -0700
commitb18899ffaffad71a2b2f8783d97bcab876ab22a1 (patch)
tree0525fb840fc1e066c06c8775ab57535ea9f5ba9e
parent90c62c2fe0f903c7a9b0eb3d8d35f0b801de5299 (diff)
downloadchessh-b18899ffaffad71a2b2f8783d97bcab876ab22a1.tar.gz
chessh-b18899ffaffad71a2b2f8783d97bcab876ab22a1.zip
Add make_keys script
-rw-r--r--lib/chessh/auth/keys.ex4
-rwxr-xr-xpriv/make_keys.sh9
2 files changed, 10 insertions, 3 deletions
diff --git a/lib/chessh/auth/keys.ex b/lib/chessh/auth/keys.ex
index a948fdf..e90f101 100644
--- a/lib/chessh/auth/keys.ex
+++ b/lib/chessh/auth/keys.ex
@@ -1,8 +1,6 @@
defmodule Chessh.Auth.KeyAuthenticator do
- alias Chessh.Key
- alias Chessh.Repo
+ alias Chessh.{Key, Repo}
use Sshd.PublicKeyAuthenticator
- require Logger
import Ecto.Query
def authenticate(username, public_key) do
diff --git a/priv/make_keys.sh b/priv/make_keys.sh
new file mode 100755
index 0000000..bd65aec
--- /dev/null
+++ b/priv/make_keys.sh
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+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 \ No newline at end of file