diff options
author | Hans Nilsson <[email protected]> | 2015-11-05 11:42:53 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2015-11-13 12:23:07 +0100 |
commit | b638b3e8c3be7599724fc086e0dfd652b89b72c2 (patch) | |
tree | a8ae7429d607b5be38ec1d228821d5a6f01b5af0 /lib/ssh/test/ssh_algorithms_SUITE.erl | |
parent | 98e1d3394514181648c64ab9e5f7a1af2573d658 (diff) | |
download | otp-b638b3e8c3be7599724fc086e0dfd652b89b72c2.tar.gz otp-b638b3e8c3be7599724fc086e0dfd652b89b72c2.tar.bz2 otp-b638b3e8c3be7599724fc086e0dfd652b89b72c2.zip |
ssh: more public keys added to test suite
Diffstat (limited to 'lib/ssh/test/ssh_algorithms_SUITE.erl')
-rw-r--r-- | lib/ssh/test/ssh_algorithms_SUITE.erl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/ssh/test/ssh_algorithms_SUITE.erl b/lib/ssh/test/ssh_algorithms_SUITE.erl index 85415a17de..fbfca324b2 100644 --- a/lib/ssh/test/ssh_algorithms_SUITE.erl +++ b/lib/ssh/test/ssh_algorithms_SUITE.erl @@ -358,7 +358,9 @@ start_pubkey_daemon(Opts, Config) -> setup_pubkey(Config) -> DataDir = ?config(data_dir, Config), UserDir = ?config(priv_dir, Config), - ssh_test_lib:setup_dsa_known_host(DataDir, UserDir), + ssh_test_lib:setup_dsa(DataDir, UserDir), + ssh_test_lib:setup_rsa(DataDir, UserDir), + ssh_test_lib:setup_ecdsa("256", DataDir, UserDir), Config. |