| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Forgot the pki files | Aris Adamantiadis | 2010-05-02 | 1 | -0/+28 | |
| | | ||||||
| * | Added pki.[ch] files as a new standard API for PKs | Aris Adamantiadis | 2010-05-01 | 1 | -1/+2 | |
| | | | | | | | Right now it's just a wrapper to the existing calls but soon it's gona be the effective implementation and other calls will be wrappers. | |||||
| * | First implementation of known_hosts with port read | Aris Adamantiadis | 2010-05-01 | 1 | -0/+1 | |
| | | ||||||
| * | Renamed private type TYPE_RSA to SSH_KEYTYPE_* | Aris Adamantiadis | 2010-04-28 | 2 | -6/+8 | |
| | | | | | Also made this enum public | |||||
| * | Added ssh_privatekey_type public function | Aris Adamantiadis | 2010-04-28 | 1 | -0/+3 | |
| | | ||||||
| * | Do not compile aes*-ctr with <=OpenSSL 0.9.7b | Aris Adamantiadis | 2010-04-14 | 1 | -0/+5 | |
| | | ||||||
| * | First experiment at trying to make libssh c89 | Aris Adamantiadis | 2010-04-07 | 1 | -3/+3 | |
| | | ||||||
| * | Added support for StrictHostKeyChecking and UserKnownHostsFile parameters. | Ruben Garcia Azuara | 2010-04-07 | 2 | -3/+3 | |
| | | | | | | | | | | | | | | | | | Added OpenSSH parameters to libssh: - StrictHostKeyChecking - UserKnownHostsFile This parameters are useful to avoid checking the fingerprint. Eg: ~/.ssh/config: Host 192.10.20.30 StrictHostKeyChecking no UserKnownHostsFile /dev/null Signed-off-by: Ruben Garcia Azuara <rubenga@tid.es> Signed-off-by: Andreas Schneider <mail@cynapses.org> | |||||
| * | Fixed solaris compilation warning and ignore case at host parameter. | Ruben Garcia Azuara | 2010-04-07 | 2 | -3/+4 | |
| | | | | | | | | | | - Suppress compilation warning in solaris caused by a comma at the end of the last value. - Ignore case at host parameter in config file Signed-off-by: Ruben Garcia Azuara <rubenga@tid.es> Signed-off-by: Andreas Schneider <mail@cynapses.org> | |||||
| * | Added a select(2) based poll-emulation if poll(2) is not available. | Andreas Schneider | 2010-04-04 | 1 | -1/+15 | |
| | | ||||||
| * | Fixed the group of the server functions. | Andreas Schneider | 2010-04-04 | 1 | -2/+2 | |
| | | ||||||
| * | Fixed the doxygen group of the libssh c++ wrapper. | Andreas Schneider | 2010-04-04 | 1 | -5/+7 | |
| | | ||||||
| * | Fixed the documentation of log.c | Andreas Schneider | 2010-04-04 | 1 | -5/+7 | |
| | | ||||||
| * | Fixed spelling. | Andreas Schneider | 2010-03-25 | 1 | -1/+1 | |
| | | ||||||
| * | Fixed and added support for several identity files. | Andreas Schneider | 2010-03-04 | 3 | -1/+7 | |
| | | ||||||
| * | Rename ssh_list_add to ssh_list_append. | Andreas Schneider | 2010-03-04 | 1 | -1/+1 | |
| | | ||||||
| * | Added a prepend function for ssh_list. | Andreas Schneider | 2010-03-04 | 1 | -0/+1 | |
| | | ||||||
| * | renamed ssh_list_get_head to ssh_list_pop_head | Aris Adamantiadis | 2010-03-01 | 1 | -8/+4 | |
| | | ||||||
| * | Added owner and group information in sftp attributes. | Andreas Schneider | 2010-02-23 | 1 | -4/+3 | |
| | | | | | | Parse the longname which is the output of 'ls -l' and set the owner and group if we are talking to an openssh server. | |||||
| * | Small doc fix | Aris Adamantiadis | 2010-02-12 | 1 | -0/+4 | |
| | | ||||||
| * | More C++ work | Aris Adamantiadis | 2010-02-12 | 1 | -8/+61 | |
| | | ||||||
| * | More C++ wrapper work. | Aris Adamantiadis | 2010-02-11 | 1 | -13/+124 | |
| | | | | | | | Wrote stubs of functions needed in the wrapper Created an Exception class which greatly simplifies the use of libssh in C++ | |||||
| * | Rename the libssh sftp documentation group. | Andreas Schneider | 2010-02-07 | 1 | -1/+1 | |
| | | ||||||
| * | Increase version number. | Andreas Schneider | 2010-02-05 | 1 | -1/+1 | |
| | | ||||||
| * | Update c++ prototypes | Aris Adamantiadis | 2010-02-02 | 1 | -0/+11 | |
| | | ||||||
| * | Hacked SSH1 to get past authentication | Aris Adamantiadis | 2010-01-25 | 1 | -1/+2 | |
| | | | | | Also resolved some bugs that may impact 0.4. need to check | |||||
| * | Correctly handle channel failures and chan states | Aris Adamantiadis | 2010-01-24 | 1 | -1/+8 | |
| | | ||||||
| * | Few function name changes | Aris Adamantiadis | 2010-01-24 | 1 | -1/+1 | |
| | | ||||||
| * | Made ssh_packet_read asynchronous | Aris Adamantiadis | 2010-01-24 | 1 | -5/+1 | |
| | | | | | | | Normally that's all that was needed into making SSH1 compliant with the new API. Beware, I have only implemented it, not actually tested it. | |||||
| * | Removed last calls to packet_read | Aris Adamantiadis | 2010-01-24 | 1 | -0/+4 | |
| | | ||||||
| * | Made parts of SSH asynchronous (inc kex1) | Aris Adamantiadis | 2010-01-24 | 4 | -2/+14 | |
| | | ||||||
| * | Beginning of async solution for SSH1 | Aris Adamantiadis | 2010-01-24 | 1 | -0/+2 | |
| | | ||||||
| * | Move SSH-1 specific packet functions in packet1.c | Aris Adamantiadis | 2010-01-23 | 1 | -0/+12 | |
| | | ||||||
| * | stub of C++ wrapper for libssh | Aris Adamantiadis | 2010-01-21 | 1 | -0/+65 | |
| | | ||||||
| * | SSH-1 cleanup and compile | Aris Adamantiadis | 2010-01-10 | 1 | -1/+3 | |
| | | | | | Not tested, probably not working correctly yet | |||||
| * | Set socket blocking after connexion | Aris Adamantiadis | 2010-01-08 | 1 | -1/+3 | |
| | | ||||||
| * | Fixed blocking bug in channel_poll | Aris Adamantiadis | 2010-01-08 | 1 | -1/+1 | |
| | | ||||||
| * | No more packet_read2() ! | Aris Adamantiadis | 2010-01-08 | 1 | -0/+3 | |
| | | ||||||
| * | Prefix message_handle_channel_request with ssh_ | Aris Adamantiadis | 2010-01-08 | 1 | -1/+1 | |
| | | ||||||
| * | Dequeue the processed messages | Aris Adamantiadis | 2010-01-08 | 1 | -0/+1 | |
| | | ||||||
| * | Renamed message_queue to ssh_message_queue | Aris Adamantiadis | 2010-01-08 | 1 | -1/+1 | |
| | | ||||||
| * | Merged the channel_request hdlrs and clean hdlrs | Aris Adamantiadis | 2010-01-08 | 2 | -2/+2 | |
| | | ||||||
| * | ssh_packet_userauth_request with new system | Aris Adamantiadis | 2010-01-08 | 1 | -0/+1 | |
| | | ||||||
| * | Converted message handlers to new system | Aris Adamantiadis | 2010-01-07 | 1 | -0/+2 | |
| | | ||||||
| * | Changes to messages for async message handling | Aris Adamantiadis | 2010-01-07 | 1 | -0/+1 | |
| | | ||||||
| * | Removed packet_wait for SSH2 | Aris Adamantiadis | 2010-01-06 | 1 | -0/+2 | |
| | | ||||||
| * | Made the server DH asynchronous. | Aris Adamantiadis | 2010-01-06 | 2 | -0/+9 | |
| | | | | | | | It still needs testing and cleanup, it was done with less care than the client-side. The socket listening and connexion is still synchronous | |||||
| * | Add support for async global requests | Aris Adamantiadis | 2010-01-06 | 2 | -1/+4 | |
| | | | | | | Normally the infamous packet_wait() synchronous call is gone in all SSH2 client code. | |||||
| * | Remove some references to packet_wait() | Aris Adamantiadis | 2010-01-03 | 1 | -0/+1 | |
| | | ||||||
| * | Removed channel_handle now unused function | Aris Adamantiadis | 2010-01-03 | 1 | -1/+0 | |
| | | ||||||
