diff options
author | Hans Nilsson <[email protected]> | 2015-12-07 10:26:44 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2015-12-07 10:26:44 +0100 |
commit | c84f85cc31ae8f13e8a44b866b90ad51f1c676c3 (patch) | |
tree | f348f0e9bc196a0ccae2d2d0c4eb97d5ab2c2341 /lib/ssh/src/ssh.hrl | |
parent | 6436c0d210b46b949f5e2de7ad328d3081eb3fa4 (diff) | |
parent | 1d1677c2a85ebce0ada828d254c7a1122b825e0a (diff) | |
download | otp-c84f85cc31ae8f13e8a44b866b90ad51f1c676c3.tar.gz otp-c84f85cc31ae8f13e8a44b866b90ad51f1c676c3.tar.bz2 otp-c84f85cc31ae8f13e8a44b866b90ad51f1c676c3.zip |
Merge branch 'maint'
* maint:
ssh: tests skips if not supported crypto
ssh: ssh_auth checks support for user pubkey alg
ssh: client pub key opt implemented
ssh: client pub key testcase
ssh: client pub key documentation
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 |