Current section
Files
Jump to
Current section
Files
src/relsyncd_ssh_server_key.erl
-module(relsyncd_ssh_server_key).
-behaviour(ssh_server_key_api).
-export([host_key/2, is_auth_key/3]).
host_key('ssh-rsa', _DaemonOptions) ->
Key = public_key:generate_key({rsa, 2048, 17}),
{ok, Key}.
%% disable authentication using keys
is_auth_key(_PublicUserKey, _User, _DaemonOptions) -> false.