Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-04-25 | ssh: Remove use of crypto:rand_bytes/1 | Ingela Anderton Andin | |
ssh use cases are cryptographical so use crypto:strong_rand_bytes/1 instead. | |||
2016-04-13 | Merge branch 'henrik/update-copyrightyear' | Henrik Nord | |
* henrik/update-copyrightyear: update copyright-year | |||
2016-03-24 | ssh: Add logging in testing subsystem | Hans Nilsson | |
2016-03-22 | ssh: Increase timetrap for GEX | Hans Nilsson | |
2016-03-21 | ssh: Make test case ssh_algorithms_SUITE report unexpected messages | Hans Nilsson | |
2016-03-18 | Set timetrap to 40s except for some long running test cases | Hans Nilsson | |
Conflicts: lib/ssh/test/ssh_connection_SUITE.erl | |||
2016-03-15 | update copyright-year | Henrik Nord | |
2016-02-29 | Merge branch 'maint' | Hans Nilsson | |
2016-02-25 | ssh: Adjusted timetrap values on ssh tests | Hans Nilsson | |
2016-02-25 | ssh: add timetrap to ssh_sup_SUITE | Hans Nilsson | |
2016-02-23 | Merge branch 'maint' | Hans Nilsson | |
Conflicts: lib/ssh/test/ssh_upgrade_SUITE.erl | |||
2016-02-22 | ssh: catch port_close in test | Hans Nilsson | |
2016-02-22 | ssh: remove calls to crypto:start|stop | Hans Nilsson | |
Conflicts: lib/ssh/test/ssh_upgrade_SUITE.erl | |||
2016-02-22 | ssh: add timetrap to all test suites | Hans Nilsson | |
2016-02-22 | ssh: remove some spurions test printouts | Hans Nilsson | |
2016-02-17 | Makefiles: Remove test_server from include path and code path | Björn Gustavsson | |
Since no test suites includede test_server.hrl, there is no need to have test_server in the include path or code path. | |||
2016-02-08 | Merge branch 'maint' | Hans Nilsson | |
2016-02-08 | ssh: fixes port_command failure on WIndows in ssh_test_cli.erl | Hans Nilsson | |
2016-01-18 | ssh: Optimization - inline encoding in ssh_message:encode/1, now 8 times faster. | Hans Nilsson | |
Also fixes minor error in ssh_protocol_SUITE that the new encoder found. | |||
2016-01-18 | Merge branch 'maint' | Hans Nilsson | |
2016-01-18 | ssh: encode/decode benchmark suites | Hans Nilsson | |
2016-01-18 | ssh: added cipher name to transfer speed report | Hans Nilsson | |
2016-01-18 | ssh: added sftp server benchmark | Hans Nilsson | |
2016-01-11 | Merge branch 'maint' | Henrik Nord | |
Conflicts: OTP_VERSION | |||
2016-01-11 | Merge branch 'maint-18' into maint | Henrik Nord | |
2016-01-08 | ssh: testcase for abnormal keyboard-interactive authentication | Hans Nilsson | |
2015-12-22 | Merge branch 'maint' | Hans Nilsson | |
* maint: ssh: clean test specs | |||
2015-12-22 | ssh: clean test specs | Hans Nilsson | |
2015-12-22 | Merge branch 'maint' | Hans Nilsson | |
* maint: ssh: add econnaborted to disconnect msgs in test suite ssh: fix the check that open-ssh supports certain pubkeys in a test suite | |||
2015-12-22 | Merge branch 'hans/ssh/cuddle_tests' into maint | Hans Nilsson | |
* hans/ssh/cuddle_tests: ssh: add econnaborted to disconnect msgs in test suite ssh: fix the check that open-ssh supports certain pubkeys in a test suite | |||
2015-12-22 | Merge branch 'maint' | Hans Nilsson | |
* maint: ssh: fix error (wrong suite) in test/ssh.spec | |||
2015-12-22 | ssh: fix error (wrong suite) in test/ssh.spec | Hans Nilsson | |
2015-12-21 | Merge branch 'maint' | Hans Nilsson | |
* maint: ssh: benchmark all common kex and cipher algorithms New structure of the report ssh: ssh_benchmark_SUITE re-organized ssh: Add first version of ssh_benchmark_SUITE | |||
2015-12-21 | ssh: benchmark all common kex and cipher algorithms | Hans Nilsson | |
2015-12-21 | New structure of the report | Hans Nilsson | |
2015-12-21 | ssh: ssh_benchmark_SUITE re-organized | Hans Nilsson | |
2015-12-21 | ssh: Add first version of ssh_benchmark_SUITE | Hans Nilsson | |
2015-12-18 | ssh: add econnaborted to disconnect msgs in test suite | Hans Nilsson | |
2015-12-18 | ssh: fix the check that open-ssh supports certain pubkeys in a test suite | Hans Nilsson | |
2015-12-09 | Merge branch 'maint' | Hans Nilsson | |
2015-12-08 | ssh: more info from failed case | Hans Nilsson | |
2015-12-08 | Merge branch 'maint' | Hans Nilsson | |
2015-12-07 | ssh: add econnaborted as correct tcp disconnect reason in testcase | Hans Nilsson | |
2015-12-07 | ssh: add check for available ipv6 addr in test case | Hans Nilsson | |
2015-12-07 | ssh: Add testcase precondition | Hans Nilsson | |
2015-12-07 | Merge branch 'maint' | Hans Nilsson | |
* 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 | |||
2015-12-04 | ssh: tests skips if not supported crypto | Hans Nilsson | |
2015-12-03 | ssh: client pub key testcase | Hans Nilsson | |
2015-12-03 | Merge branch 'maint' | Zandra | |
2015-12-01 | Support SSH key callback module options | Vipin Nair | |
This patch allows extra callback options to be passed to the module implementing the SSH callback module behaviour. A module implementing the SSH key callback API is used to customize the handling of public key. This patch allows extra callback options to be passed to the module implementing the SSH callback module behaviour. The key_cb option has been changed: {key_cb, atom()} -> {key_cb, key_cb()} Where: key_cb() :: atom() | {atom(), list()} The callback options, if specified, is made available to the callback module via the options passed to it under the key 'key_cb_private'. More details and some backgorund is available here[1]. [1]: http://erlang.org/pipermail/erlang-patches/2015-November/004800.html |