Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-12-15 | Update release notes | Erlang/OTP | |
2015-12-11 | [ssh] Align documentation to DTD | Lars Thorsen | |
2015-12-08 | ssh: more info from failed case | Hans Nilsson | |
2015-12-08 | Merge branch 'hans/ssh/defensics_errors' into maint | Hans Nilsson | |
* hans/ssh/defensics_errors: ssh: fix error for data fields errors ssh: fix error for bad packet lengths found by Defensics | |||
2015-12-07 | ssh: fix error for data fields errors | Hans Nilsson | |
2015-12-07 | ssh: fix error for bad packet lengths found by Defensics | 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-04 | ssh: tests skips if not supported crypto | Hans Nilsson | |
2015-12-04 | ssh: ssh_auth checks support for user pubkey alg | Hans Nilsson | |
2015-12-03 | ssh: client pub key opt implemented | Hans Nilsson | |
2015-12-03 | ssh: client pub key testcase | Hans Nilsson | |
2015-12-03 | ssh: client pub key documentation | Hans Nilsson | |
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 | |||
2015-11-27 | Merge branch 'maint-18' into maint | Hans Nilsson | |
* maint-18: Updated OTP version Update release notes ssh: vsn.mk updated ssh: New test cases for SSH_MSG_KEX_DH_GEX_REQUEST_OLD ssh: update existing testcases ssh: Improve group selection ssh: implemented server side SSH_MSG_KEX_DH_GEX_REQUEST_OLD for putty client Conflicts: lib/ssh/src/ssh_transport.erl lib/ssh/test/ssh_protocol_SUITE.erl lib/ssh/vsn.mk | |||
2015-11-26 | Update release notes | Erlang/OTP | |
2015-11-26 | ssh: vsn.mk updated | Hans Nilsson | |
2015-11-26 | ssh: New test cases for SSH_MSG_KEX_DH_GEX_REQUEST_OLD | Hans Nilsson | |
2015-11-26 | ssh: update existing testcases | Hans Nilsson | |
2015-11-26 | ssh: Improve group selection | Hans Nilsson | |
Now it chooses the first found if no exact match. | |||
2015-11-26 | ssh: implemented server side SSH_MSG_KEX_DH_GEX_REQUEST_OLD for putty client | Hans Nilsson | |
2015-11-25 | ssh: sftpd callback takes new option 'recv_window_size', defaults to 1000000 | Hans Nilsson | |
2015-11-25 | ssh: added 'pending' in recv_window handling and limit sending | Hans Nilsson | |
2015-11-24 | Merge branch 'hans/ssh/fd_more/OTP-12966' into maint | Hans Nilsson | |
* hans/ssh/fd_more/OTP-12966: ssh: testcases for starting daemon with given fd ssh: Make it possible for more than one daemon started with option fd | |||
2015-11-24 | Merge branch 'hans/ssh/aes_gcm_crypto/OTP-13018' into maint | Hans Nilsson | |
* hans/ssh/aes_gcm_crypto/OTP-13018: ssh: fix dialyzer reported error ssh: renegotiate test group for AES_GCM ssh: documentation updates ssh: AEAD_AES_(128|256)_GCM and aes(128|256)[email protected] crypto ssh: refactor packet reception | |||
2015-11-23 | ssh: fix dialyzer reported error | Hans Nilsson | |
2015-11-23 | ssh: renegotiate test group for AES_GCM | Hans Nilsson | |
2015-11-23 | ssh: documentation updates | Hans Nilsson | |
2015-11-23 | ssh: AEAD_AES_(128|256)_GCM and aes(128|256)[email protected] crypto | Hans Nilsson | |
Note that the rfc5647 is ambigous so this implementation of AEAD_AES_(128|256)_GCM may or may not be compatible with others. They are note enabled by default but may be enabled by the user. See the Reference Manual, Application SSH for details of how we interpret the rfc. To be safe, use [email protected] or [email protected] instead. | |||
2015-11-23 | ssh: refactor packet reception | Hans Nilsson | |
There was an assymetric relationship between receiving a ssh-packet (decrypting-mac-decompress) and sending one. When sending, most of the work was defined in the ssh_transport module, while at reception the ssh_connection_handler was the one knowing what to do. This commit moves the reception down to the ssh_transport module where it belongs. | |||
2015-11-20 | ssh: testcases for starting daemon with given fd | Hans Nilsson | |
2015-11-20 | Merge branch 'riverrun/maint' into maint | Zandra | |
* riverrun/maint: Recommend against using crypto:rand_bytes | |||
2015-11-19 | ssh: Make it possible for more than one daemon started with option fd | Hans Nilsson | |
2015-11-17 | [ssh] Correct documentation | Hans Bolinder | |
Fix mistakes found by 'xmllint'. | |||
2015-11-17 | Merge branch 'hans/ssh/doc_updates/OTP-12003' into maint | Hans Nilsson | |
* hans/ssh/doc_updates/OTP-12003: ssh: alternative look ssh: list supported rfcs ssh: moved "supported" section from ssh module man page to SSH_app man page ssh: links to crypto and public_key in the ssh app ref ssh: updated ssh_app.xml with ecdsa info ssh: removed pre-historic ssh specs from the doc-dir ssh: document function dependencies in ssh_connection.erl | |||
2015-11-17 | Merge branch 'hans/ssh/cuddle_tests' into maint | Hans Nilsson | |
* hans/ssh/cuddle_tests: ssh: Add env var info printout to ssh_algorithms_SUTE:init_per_suite ssh: more public keys added to test suite | |||
2015-11-17 | Merge branch 'hans/ssh/sshdir_search_order/OTP-13109' into maint | Hans Nilsson | |
* hans/ssh/sshdir_search_order/OTP-13109: ssh: ssh_file:default_user_dir/0 - try HOME env var first | |||
2015-11-16 | Merge branch 'kanatohodets/ssh-subsystem-typo' into maint | Henrik Nord | |
* kanatohodets/ssh-subsystem-typo: Fix spelling of ssh 'subsystem' OTP-13108 | |||
2015-11-13 | ssh: ssh_file:default_user_dir/0 - try HOME env var first | Hans Nilsson | |
2015-11-13 | ssh: Add env var info printout to ssh_algorithms_SUTE:init_per_suite | Hans Nilsson | |
2015-11-13 | ssh: more public keys added to test suite | Hans Nilsson | |
2015-11-13 | ssh: alternative look | Hans Nilsson | |
2015-11-11 | ssh: list supported rfcs | Hans Nilsson | |
2015-11-11 | ssh: moved "supported" section from ssh module man page to SSH_app man page | Hans Nilsson | |
2015-11-11 | ssh: links to crypto and public_key in the ssh app ref | Hans Nilsson | |
2015-11-11 | ssh: updated ssh_app.xml with ecdsa info | Hans Nilsson | |
2015-11-11 | ssh: removed pre-historic ssh specs from the doc-dir | Hans Nilsson | |
2015-11-11 | ssh: document function dependencies in ssh_connection.erl | Hans Nilsson | |
2015-11-11 | ssh: add better error handling in ssh_file | Hans Nilsson | |
ssh_file:lookup_user_key_fd and ssh_file:lookup_host_key |