diff options
author | Hans Nilsson <[email protected]> | 2015-12-07 10:20:29 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2015-12-07 10:20:29 +0100 |
commit | 1d1677c2a85ebce0ada828d254c7a1122b825e0a (patch) | |
tree | add0d6e5a1e02e1ed2ec71f33f4b94c76c592985 /lib/ssh/src/ssh.hrl | |
parent | 572bea9807504670b1eec4aab6b8ac833cd42b26 (diff) | |
parent | 58aff4fafed973059167ea64b6109ce2fec03fe1 (diff) | |
download | otp-1d1677c2a85ebce0ada828d254c7a1122b825e0a.tar.gz otp-1d1677c2a85ebce0ada828d254c7a1122b825e0a.tar.bz2 otp-1d1677c2a85ebce0ada828d254c7a1122b825e0a.zip |
Merge branch 'hans/ssh/pref_public_key_algs/OTP-13158' into maint
* hans/ssh/pref_public_key_algs/OTP-13158:
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 |