1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-07-28 01:41:48 +03:00
Commit Graph

2517 Commits

Author SHA1 Message Date
fa37965ab0 cmake: Add a define to see if we have ecc support. 2012-02-04 18:37:04 +01:00
3c7571e61b pki: Add support for export ecdsa pubkeys. 2012-02-04 18:37:04 +01:00
d44a79da9b tests: Add test for reading ecdsa privkey. 2012-02-04 18:37:04 +01:00
ea74a12b70 pki: Add support to import ecdsa private keys. 2012-02-04 18:37:03 +01:00
b4823252ca pki: Add ECDSA for key compare. 2012-02-04 18:37:03 +01:00
244fa0474b pki: Fix typo in error message. 2012-02-04 18:37:03 +01:00
9e5b3914de examples: Fix PTY allocation error. 2012-01-30 09:48:01 +01:00
31727bf33a Ignore and debug messages can be sent using public API
Signed-off-by: Martin Drasar <drasar@ics.muni.cz>
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
2012-01-05 11:26:53 +01:00
a15399992e Fix logic erorr with brace-less conditional statement 2012-01-03 19:41:28 +01:00
89733e697f patch pki_gcrypt.c to be compilable without CMake 2012-01-02 16:41:52 +01:00
2ffbdb0492 commit a7e14524c4f7903f607cdcd02b83782e89f0a82c 2012-01-02 16:31:37 +01:00
4305da29a1 session: Cleanup timeout functions.
It is possible that we get unrelated packets while waiting for
termination, thus waiting indefinitely. As a workaround we have to
check the user-supplied timeout.
2012-01-02 12:39:43 +01:00
2f861a858b message: Fix compiler warning. 2012-01-02 09:31:40 +01:00
74f5f43409 auth: Fix public key authentication so we can continue. 2012-01-01 23:53:21 +01:00
0b7b699ced auth: Fix a possible double free. 2012-01-01 23:53:14 +01:00
c08bdf5917 message: Handle all unknown global messages.
Reply to unknown global messages as required by the RFC. Therefore
keepalive@openssh.com style messages should get treated in a sane way.
2012-01-01 20:53:13 +01:00
7d26f7ceab torture: Fix compilation with cmockery. 2011-12-27 07:14:08 +01:00
90893fd1a3 options: Fix typo in ssh_options_get() docs. 2011-12-14 13:45:19 +01:00
76fad364cd sftp: Add references to sftp_get_error() to docs. 2011-11-17 19:12:31 +01:00
ba4f10dc46 agent: Improve logging. 2011-11-16 11:32:06 +01:00
ce0324770d kex: Fix some build warnings. 2011-11-10 14:46:22 +01:00
bc2ab9b414 bind: Add more error messages. 2011-11-09 10:21:51 +01:00
ce26b8d777 packet: Use a define for the macsize. 2011-11-09 10:13:26 +01:00
99d2cf02a6 options: Add missing argument check. 2011-11-03 18:24:52 +01:00
17f396ffab Improve ssh_options_get(ssh_session, enum ssh_options_e, char**).
* Use SSH_ERROR and SSH_OK instead of `-1` and `0`.
 * Re-factor for code duplication
 * No longer call `ssh_set_error_invalid(ssh_session)` when the
   ssh_session is NULL.
2011-11-03 18:24:02 +01:00
2c04994443 pki: Add a ssh_key_cmp() function. 2011-10-29 19:58:28 +02:00
e799c0ce7d dh: Add ssh_get_publickey(). 2011-10-29 19:58:28 +02:00
2cc48db673 tests: Fix build warning. 2011-10-29 19:58:10 +02:00
e797781bb5 Implement ssh_options_get_port(ssh_session, unsigned int*). 2011-10-28 12:15:12 +02:00
6bd95b50f5 Implement ssh_options_get(ssh_session, enum ssh_options_e, char**). 2011-10-28 12:14:34 +02:00
d8d9755b7d bind: Fix ssh_bind_listen in normal case. 2011-10-17 19:27:29 +02:00
1fcddebadc server: use app-provided bind socket when available 2011-10-13 22:30:27 +02:00
551a0c855b server: ssh_bind_accept_fd
This function will not call accept() but use function parameter
instead
2011-10-13 22:23:48 +02:00
85cc582d4a doc: Improve doc of ssh_get_pubkey_hash(). 2011-10-04 10:47:05 +02:00
c340192144 packet: cleaner logs with less redundant info 2011-10-03 13:52:19 +03:00
b6d0b531f8 server: pubkey auth doesn't work with ecdh 2011-09-25 23:47:55 +02:00
5c19cda280 Fix warning 2011-09-24 14:08:52 +02:00
e38f2f933b pki: ssh_pki_generate
for both gcrypt and openssl
2011-09-24 01:36:58 +02:00
21d68112b8 Torture: test new ssh_pki_generate function 2011-09-24 01:36:39 +02:00
3fa5293aec pki: DO actually verify signatures
Would have been an embarrassing bug...
2011-09-24 00:25:44 +02:00
6859e4f4ec build: Fix zlib support. 2011-09-23 22:57:21 +02:00
43fc7553f8 torture_algorithm: follow verbosity 2011-09-23 22:57:05 +02:00
717840fc09 torture: check for presence of ssh agent 2011-09-23 22:33:21 +02:00
046aa02f39 Fix bugs found by clang 2011-09-23 22:27:46 +02:00
8a3b02f68d cmake: Fix library linking. 2011-09-23 08:00:58 +02:00
dad35304b6 channels: fix embarrasing channel_read_nonblocking bug 2011-09-22 13:48:21 +03:00
744b7720af build: Fix SSHv1 build. 2011-09-22 12:07:09 +02:00
5083742192 packet: Move packet callbacks to packet_cb.c. 2011-09-18 21:37:18 +02:00
dc42a1757f gzip: Fix zlib support. 2011-09-18 21:37:18 +02:00
7202a26b6c priv: Remove dead prototype. 2011-09-18 21:37:17 +02:00