diff options
author | Hans Nilsson <[email protected]> | 2015-12-03 15:56:03 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2015-12-03 17:24:01 +0100 |
commit | 1a6c8b90416e261b0429bbcc253347ce9fbac5ea (patch) | |
tree | 3220e8b5875471dd7a0e2a3a326607c560f650e2 /lib/ssh/src/ssh.hrl | |
parent | 8abb84f324d6302d720545ffd3955f524a38c219 (diff) | |
download | otp-1a6c8b90416e261b0429bbcc253347ce9fbac5ea.tar.gz otp-1a6c8b90416e261b0429bbcc253347ce9fbac5ea.tar.bz2 otp-1a6c8b90416e261b0429bbcc253347ce9fbac5ea.zip |
ssh: client pub key opt implemented
Diffstat (limited to 'lib/ssh/src/ssh.hrl')
-rw-r--r-- | lib/ssh/src/ssh.hrl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/ssh/src/ssh.hrl b/lib/ssh/src/ssh.hrl index 8efc743b67..f88098819d 100644 --- a/lib/ssh/src/ssh.hrl +++ b/lib/ssh/src/ssh.hrl @@ -33,6 +33,9 @@ -define(REKEY_DATA_TIMOUT, 60000). -define(DEFAULT_PROFILE, default). +-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). %% basic binary constructors |