ssh_server_key_api
-behaviour(ssh_server_key_api).
Behaviour describing the API for an SSH server's public key handling.By implementing the callbacks defined in this behavior it is possible to customize the SSH server's public key handling. By default the SSH application implements this behavior with help of the standard openssh files, see ssh(6).
DATA TYPES
Type definitions that are used more than once in this module and/or abstractions to indicate the intended use of the data type:
boolean() = true | false
string() = [byte()]
public_key() = #'RSAPublicKey'{}| {integer(), #'Dss-Parms'{}}| term()
private_key() = #'RSAPublicKey'{}| {integer(), #'Dss-Parms'{}}| term()
public_key_algorithm() = 'ssh-rsa'| 'ssh-dss' | atom()
Functions
Module:host_key(Algorithm, DaemonOptions) -> {ok, Key} | {error, Reason}
Algorithm = public_key_algorithm()
DaemonOptions = proplists:proplist()
Key = private_key()
Reason = term()
Algorithm
Fetches the hosts private key
Module:is_auth_key(Key, User, DaemonOptions) -> Result
Key = public_key()
User = string()
DaemonOptions = proplists:proplist()
Result = boolean()
Checks if the user key is authorized