aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2011-09-02auth: fix things broken during mergeAris Adamantiadis2-25/+5
2011-09-02Update libssh to ssh_handle_packets_terminationAris Adamantiadis9-217/+299
cherry-picked from 0cb5248 Should resolve all timeout problems Conflicts: src/auth.c src/channels.c
2011-09-02Channels: fix the "server specified invalid channel" bugAris Adamantiadis3-11/+41
Resolved by introducing a flag entry in channel structure.
2011-09-02channel: ssh_channel_read is nonblocking, + docfixesAris Adamantiadis1-16/+46
cherry-picked from 6091147 Conflicts: src/channels.c
2011-09-02channels: replaced bugged lists with ssh_listAris Adamantiadis7-41/+42
cherry-picked from 0aef5f Conflicts: src/session.c
2011-09-02SSH1: fix buildAris Adamantiadis3-4/+15
2011-09-02ssh_select converted to ssh_event, and bugfix to ssh_channel_selectAris Adamantiadis2-123/+74
2011-09-02poll: resolve use-after-free + inconsistent callbacks callAris Adamantiadis1-18/+3
This code was weird in the first place. I suspect my change will break something else (probably the appcode that needed it). ssh_poll_ctx_free is not a good place to send exception callbacks imho.
2011-09-02channels: ssh_channel_select implemented with ssh_pollAris Adamantiadis1-50/+34
Should fix #56
2011-09-02sample: fix ssh_channel_readAris Adamantiadis1-4/+5
2011-09-02channel: implement ssh_channel_poll_timeoutAris Adamantiadis2-0/+56
Resolves bug #57
2011-09-02benchmarks: fix some bugsAris Adamantiadis3-6/+26
2011-09-02Channels: increase window size x10Aris Adamantiadis1-1/+1
Provides me a 3x performance boost for async sftp, 5x for sync sftp (on localhost)
2011-09-02benchmarks: sftp_async + few changesAris Adamantiadis5-54/+187
2011-09-02benchmarks: refactoring + sync sftp testsAris Adamantiadis6-27/+401
no surprise, sync sftp is much slower, even for localhost, especially for download.
2011-09-02benchmarks: added "data" optionAris Adamantiadis3-3/+21
2011-09-02benchmarks: added raw_download testAris Adamantiadis4-15/+130
2011-09-02channels: made the remaining calls nonblocking + fix #52Aris Adamantiadis1-22/+59
2011-09-02channels: use hard random for the X11 cookieAris Adamantiadis1-3/+5
We are in a security library or we are not.
2011-09-02channels: made all channel requests nonblockingAris Adamantiadis2-32/+105
2011-09-02unittests:make sftp_dir pass on my laptopAris Adamantiadis2-0/+4
2011-09-02scp: Fixed documentation bug #9Aris Adamantiadis1-2/+6
2011-08-30doc: Improve doc of ssh_message_auth_pubkey().Andreas Schneider1-0/+3
2011-08-30pki: Check the type of the key blob earlier.Andreas Schneider1-2/+9
2011-08-30keys: Remove keys.h where it is obsolete.Andreas Schneider4-6/+1
2011-08-30keys: Remove obsolete keys.c.Andreas Schneider2-50/+0
2011-08-30keys: Remove dead prototypes.Andreas Schneider1-6/+0
2011-08-30keys: Move publickey_from_privatekey() to legacy.c.Andreas Schneider2-194/+31
2011-08-30keys: Move publickey_free() to legacy.c.Andreas Schneider2-28/+29
2011-08-30Include stdio.h for snprintfmilo1-0/+1
2011-08-30pki: Use consistent API for ssh_pki_export_privkey_to_pubkey().Andreas Schneider6-25/+39
2011-08-30pki: Use consistent API for ssh_pki_export_pubkey_blob().Andreas Schneider7-23/+45
2011-08-30tests: Enable ecdh_sha2_nistp256 test only with openssl.Andreas Schneider1-0/+4
2011-08-30cmake: Add ec.h and ecdsa.h checks.Andreas Schneider2-0/+16
2011-08-29pki: Fix session_id hashing.Andreas Schneider1-2/+2
I don't understand why this code worked before. It was completly wrong.
2011-08-29channels: Fix possible infinite loop in channel_read().rofl0r1-1/+5
2011-08-29sftp: Handle short reads of sftp_async_read().Jonas Jonsson1-3/+2
sftp_async_read() and sftp_async_read_begin() assume that the whole read will be successful but when this is not the case, the offset will be wrong. Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
2011-08-28pki: string_* -> ssh_string_*Andreas Schneider1-4/+4
2011-08-28pki: Refactor ssh_pki_do_sign().Andreas Schneider1-10/+11
2011-08-28pki: Refactor _RSA_do_sign().Andreas Schneider1-15/+31
2011-08-28doc: Fix authentication docs.Andreas Schneider1-29/+31
2011-08-28doc: Fix a check in the doc code.Andreas Schneider1-1/+3
2011-08-28pki: Cleanup crypto includes.Andreas Schneider1-2/+0
2011-08-28pki: Fix gcrypt includes and update copyright.Andreas Schneider1-8/+3
2011-08-28pki: Get rid of the string.h include in pki_gcrypt.c.Andreas Schneider1-17/+28
2011-08-28legacy: Move ssh_private_key and ssh_public_key typedefs.Andreas Schneider3-5/+8
2011-08-28build: Fix the build of keyfiles torture test.Andreas Schneider1-1/+1
2011-08-28pki: Add Windows defines.Andreas Schneider1-0/+14
2011-08-28pki: Compile pki_gcrypt.c only if we need it.Andreas Schneider2-30/+2
2011-08-28keyfiles: Remove keyfiles.h.Andreas Schneider5-39/+0