aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssh/src/ssh_server_key_api.erl
diff options
context:
space:
mode:
authorHans Nilsson <[email protected]>2016-06-01 11:45:22 +0200
committerHans Nilsson <[email protected]>2016-06-01 11:45:22 +0200
commitb2cefac14a6b26c78f584592801413611ff6f31c (patch)
treead701defc29f4f9010c9cca0b8c51fd308f6a40d /lib/ssh/src/ssh_server_key_api.erl
parent8e3eb916b34faf85b272031930be455163b49abf (diff)
parentf5e152a96c5ad957f3732a3f0cee09034c7c727d (diff)
downloadotp-b2cefac14a6b26c78f584592801413611ff6f31c.tar.gz
otp-b2cefac14a6b26c78f584592801413611ff6f31c.tar.bz2
otp-b2cefac14a6b26c78f584592801413611ff6f31c.zip
Merge branch 'hans/ssh/spec_behaviours/OTP-13749'
Diffstat (limited to 'lib/ssh/src/ssh_server_key_api.erl')
-rw-r--r--lib/ssh/src/ssh_server_key_api.erl15
1 files changed, 11 insertions, 4 deletions
diff --git a/lib/ssh/src/ssh_server_key_api.erl b/lib/ssh/src/ssh_server_key_api.erl
index c1d43a486c..3f1b886fa7 100644
--- a/lib/ssh/src/ssh_server_key_api.erl
+++ b/lib/ssh/src/ssh_server_key_api.erl
@@ -23,9 +23,16 @@
-include_lib("public_key/include/public_key.hrl").
-include("ssh.hrl").
--callback host_key(Algorithm :: 'ssh-rsa'| 'ssh-dss'| atom(), DaemonOptions :: proplists:proplist()) ->
- {ok, PrivateKey :: #'RSAPrivateKey'{}| #'DSAPrivateKey'{} | term()} | {error, string()}.
+-export_type([algorithm/0]).
--callback is_auth_key(PublicKey :: #'RSAPublicKey'{}| {integer(), #'Dss-Parms'{}}| term(),
- User :: string(), DaemonOptions :: proplists:proplist()) ->
+-type algorithm() :: ssh_client_key_api:algorithm().
+
+
+-callback host_key(Algorithm :: algorithm(),
+ DaemonOptions :: proplists:proplist()) ->
+ {ok, PrivateKey :: public_key:private_key()} | {error, term()}.
+
+-callback is_auth_key(PublicKey :: public_key:public_key(),
+ User :: string(),
+ DaemonOptions :: proplists:proplist()) ->
boolean().