diff options
author | Hans Nilsson <[email protected]> | 2017-04-19 12:01:26 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2017-04-26 12:15:00 +0200 |
commit | 519f89016e7ce755775a88730814fa34af21676c (patch) | |
tree | ce24d8d986534a184986916dfc3d771f0b91404e /lib/ssh/src/ssh.hrl | |
parent | b7cba805e37e591d8fa7d7df06f9563a9f926e23 (diff) | |
download | otp-519f89016e7ce755775a88730814fa34af21676c.tar.gz otp-519f89016e7ce755775a88730814fa34af21676c.tar.bz2 otp-519f89016e7ce755775a88730814fa34af21676c.zip |
ssh: server-sig-algs, client side
Diffstat (limited to 'lib/ssh/src/ssh.hrl')
-rw-r--r-- | lib/ssh/src/ssh.hrl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssh/src/ssh.hrl b/lib/ssh/src/ssh.hrl index 1a95bb27e7..cf2a359e6c 100644 --- a/lib/ssh/src/ssh.hrl +++ b/lib/ssh/src/ssh.hrl @@ -38,7 +38,6 @@ -define(MAX_RND_PADDING_LEN, 15). -define(SUPPORTED_AUTH_METHODS, "publickey,keyboard-interactive,password"). --define(SUPPORTED_USER_KEYS, ['ssh-rsa','ssh-dss','ecdsa-sha2-nistp256','ecdsa-sha2-nistp384','ecdsa-sha2-nistp521']). -define(FALSE, 0). -define(TRUE, 1). @@ -201,6 +200,7 @@ userauth_quiet_mode, % boolean() userauth_methods, % list( string() ) eg ["keyboard-interactive", "password"] userauth_supported_methods, % string() eg "keyboard-interactive,password" + userauth_pubkeys, kb_tries_left = 0, % integer(), num tries left for "keyboard-interactive" userauth_preference, available_host_keys, |