diff options
author | Hans Nilsson <[email protected]> | 2016-06-01 11:45:22 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2016-06-01 11:45:22 +0200 |
commit | b2cefac14a6b26c78f584592801413611ff6f31c (patch) | |
tree | ad701defc29f4f9010c9cca0b8c51fd308f6a40d /lib/ssh/src/ssh_file.erl | |
parent | 8e3eb916b34faf85b272031930be455163b49abf (diff) | |
parent | f5e152a96c5ad957f3732a3f0cee09034c7c727d (diff) | |
download | otp-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_file.erl')
-rw-r--r-- | lib/ssh/src/ssh_file.erl | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/lib/ssh/src/ssh_file.erl b/lib/ssh/src/ssh_file.erl index 4486d36fe4..216f65f33a 100644 --- a/lib/ssh/src/ssh_file.erl +++ b/lib/ssh/src/ssh_file.erl @@ -43,7 +43,28 @@ -define(PERM_644, 8#644). -%% API +%%% API + +%%% client +-spec add_host_key(string(), + public_key:public_key(), + proplists:proplist()) -> ok | {error,term()}. + +-spec is_host_key(public_key:public_key(), + string(), + ssh_client_key_api:algorithm(), + proplists:proplist()) -> boolean(). + +-spec user_key(ssh_client_key_api:algorithm(), + proplists:proplist()) -> {ok, public_key:private_key()} | {error,term()}. + +%%% server +-spec host_key(ssh_server_key_api:algorithm(), + proplists:proplist()) -> {ok, public_key:private_key()} | {error,term()}. + +-spec is_auth_key(public_key:public_key(), + string(), proplists:proplist()) -> boolean(). + %% Used by server host_key(Algorithm, Opts) -> |