-behaviour(ssh_server_key_api).
Behaviour describing the API for public key handling of an SSH server. By implementing the callbacks defined in this behavior, the public key handling of an SSH server can be customized. By default the SSH application implements this behavior with help of the standard OpenSSH files, see the ssh(6) application manual.
Types
daemon_key_cb_options() =
[{key_cb_private, term()} | ssh:daemon_option()]
Options provided to ssh:daemon/2,3.
The option list given in the
key_cb
option is available with the key key_cb_private
.
Functions
Algorithm = ssh:pubkey_alg()
DaemonOptions = daemon_key_cb_options()
PrivateKey = public_key:private_key() | crypto:engine_key_ref()
Reason = term()
Algorithm
.
It may be a reference to a 'ssh-rsa', rsa-sha2-* or 'ssh-dss' (NOT ecdsa) key stored in a loaded Engine.Fetches the private key of the host.
PublicUserKey = public_key:public_key()
User = string()
DaemonOptions = daemon_key_cb_options()
Result = boolean()
Checks if the user key is authorized.