[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 0/9] server: fix SSH_MSG_KEXDH_REPLY and revive pkd tests
[Thread Prev] | [Thread Next]
- Subject: [PATCH 0/9] server: fix SSH_MSG_KEXDH_REPLY and revive pkd tests
- From: Jon Simons <jon@xxxxxxxxxxxxx>
- Reply-to: libssh@xxxxxxxxxx
- Date: Fri, 25 May 2018 06:54:24 -0700
- To: libssh@xxxxxxxxxx
- Cc: Jon Simons <jon@xxxxxxxxxxxxx>
Included here are some bugfixes for server SSH_MSG_KEXDH_REPLY as well as full support for socket_wrapper in the pkd tests. I've added `pkd_hello` to the set of tests that are executed with `make test`. Also included here is a fix for a couple of memory leaks observed by code inspection. Please let me know if I can make any changes for inclusion to master. -Jon Jon Simons (9): pkd: fix missing config.h #include ecdh: fix SSH_MSG_KEXDH_REPLY for libcrypto ecdh: fix SSH_MSG_KEXDH_REPLY for libgcrypt ecdh: fix SSH_MSG_KEXDH_REPLY for mbedTLS tests: fix -Wunused-function warning in torture_pki_ecdsa.c dh: fix `ssh_get_pubkey_hash` indentation dh: fix two leaks in `ssh_get_pubkey_hash` pkd: add_test pkd_hello_i1 for `make test` pkd: run with SOCKET_WRAPPER_LIBRARY src/dh.c | 80 +++++++++++++++++---------------- src/ecdh_crypto.c | 11 ++++- src/ecdh_gcrypt.c | 11 ++++- src/ecdh_mbedcrypto.c | 16 +++++-- tests/pkd/CMakeLists.txt | 20 +++++++++ tests/pkd/pkd_daemon.h | 6 +++ tests/pkd/pkd_hello.c | 89 ++++++++++++++++++++++++++++++++++++- tests/unittests/torture_pki_ecdsa.c | 2 + 8 files changed, 191 insertions(+), 44 deletions(-) -- 2.14.1
[PATCH 1/9] pkd: fix missing config.h #include | Jon Simons <jon@xxxxxxxxxxxxx> |
[PATCH 2/9] ecdh: fix SSH_MSG_KEXDH_REPLY for libcrypto | Jon Simons <jon@xxxxxxxxxxxxx> |
[PATCH 3/9] ecdh: fix SSH_MSG_KEXDH_REPLY for libgcrypt | Jon Simons <jon@xxxxxxxxxxxxx> |
[PATCH 4/9] ecdh: fix SSH_MSG_KEXDH_REPLY for mbedTLS | Jon Simons <jon@xxxxxxxxxxxxx> |
[PATCH 5/9] tests: fix -Wunused-function warning in torture_pki_ecdsa.c | Jon Simons <jon@xxxxxxxxxxxxx> |
[PATCH 6/9] dh: fix `ssh_get_pubkey_hash` indentation | Jon Simons <jon@xxxxxxxxxxxxx> |
[PATCH 7/9] dh: fix two leaks in `ssh_get_pubkey_hash` | Jon Simons <jon@xxxxxxxxxxxxx> |
[PATCH 8/9] pkd: add_test pkd_hello_i1 for `make test` | Jon Simons <jon@xxxxxxxxxxxxx> |
[PATCH 9/9] pkd: run with SOCKET_WRAPPER_LIBRARY | Jon Simons <jon@xxxxxxxxxxxxx> |