chessh/lib/auth/keys.ex

9 lines
145 B
Elixir
Raw Normal View History

2022-12-19 03:37:10 -05:00
defmodule Chessh.Auth.KeyAuthenticator do
use Sshd.PublicKeyAuthenticator
require Logger
def authenticate(_, _, _) do
false
end
end