summaryrefslogtreecommitdiff
path: root/lib/auth/keys.ex
blob: 3e0f142b56835997e19511dd2653ff86b8671334 (plain)
1
2
3
4
5
6
7
8
defmodule Chessh.Auth.KeyAuthenticator do
  use Sshd.PublicKeyAuthenticator
  require Logger

  def authenticate(_, _, _) do
    false
  end
end