aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2012-02-04pki: Add ecdsa support to do_sign_sessionid.Andreas Schneider1-0/+8
2012-02-04pki: Add ecdsa support to do_sign.Andreas Schneider1-0/+14
2012-02-04pki: Add ecdsa support for signature_verify.Andreas Schneider1-0/+14
2012-02-04pki: Add ecdsa support for signature_from_blob.Andreas Schneider1-0/+50
2012-02-04pki: Add ecdsa support for signature_to_blob.Andreas Schneider2-1/+42
2012-02-04pki: Add support to generate ecdsa keys.Andreas Schneider3-4/+48
2012-02-04tests: Add duplicate ecdsa key test.Andreas Schneider1-0/+49
2012-02-04tests: Add ecdsa pubkey_from_privkey test.Andreas Schneider1-0/+44
2012-02-04tests: Add ecdsa publickey_from_privatekey test.Andreas Schneider1-0/+26
2012-02-04pki: Fix ecdsa key dup.Andreas Schneider1-0/+2
2012-02-04tests: Add a testing of importing ecdsa pubkeys.Andreas Schneider1-0/+40
2012-02-04pki: Add support to import ecdsa pubkeys.Andreas Schneider3-1/+93
2012-02-04cmake: Add a define to see if we have ecc support.Andreas Schneider2-0/+7
2012-02-04pki: Add support for export ecdsa pubkeys.Andreas Schneider1-0/+116
2012-02-04tests: Add test for reading ecdsa privkey.Andreas Schneider1-0/+39
2012-02-04pki: Add support to import ecdsa private keys.Andreas Schneider3-0/+58
2012-02-04pki: Add ECDSA for key compare.Andreas Schneider1-0/+29
2012-02-04pki: Fix typo in error message.Andreas Schneider1-1/+1
2012-01-30examples: Fix PTY allocation error.Anthony VEREZ1-1/+6
2012-01-05Ignore and debug messages can be sent using public APIMartin Drasar2-0/+92
Signed-off-by: Martin Drasar <drasar@ics.muni.cz> Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
2012-01-03Fix logic erorr with brace-less conditional statementLee Hambley1-1/+2
2012-01-02patch pki_gcrypt.c to be compilable without CMakerofl0r1-0/+4
2012-01-02commit a7e14524c4f7903f607cdcd02b83782e89f0a82crofl0r2-0/+12
2012-01-02session: Cleanup timeout functions.rofl0r3-22/+40
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-02message: Fix compiler warning.Andreas Schneider1-1/+1
2012-01-01auth: Fix public key authentication so we can continue.Andreas Schneider1-1/+3
2012-01-01auth: Fix a possible double free.Andreas Schneider1-0/+2
2012-01-01message: Handle all unknown global messages.rofl0r1-1/+4
Reply to unknown global messages as required by the RFC. Therefore keepalive@openssh.com style messages should get treated in a sane way.
2011-12-27torture: Fix compilation with cmockery.Andreas Schneider1-1/+2
2011-12-14options: Fix typo in ssh_options_get() docs.Andreas Schneider1-1/+1
2011-11-17sftp: Add references to sftp_get_error() to docs.Andreas Schneider1-0/+36
2011-11-16agent: Improve logging.Andreas Schneider1-12/+11
2011-11-10kex: Fix some build warnings.Andreas Schneider3-3/+4
2011-11-09bind: Add more error messages.Andreas Schneider1-1/+9
2011-11-09packet: Use a define for the macsize.Andreas Schneider1-5/+4
2011-11-03options: Add missing argument check.Andreas Schneider1-0/+7
2011-11-03Improve ssh_options_get(ssh_session, enum ssh_options_e, char**).Lee Hambley2-35/+20
* 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-10-29pki: Add a ssh_key_cmp() function.Andreas Schneider7-0/+209
2011-10-29dh: Add ssh_get_publickey().Andreas Schneider4-7/+33
2011-10-29tests: Fix build warning.Andreas Schneider1-1/+0
2011-10-28Implement ssh_options_get_port(ssh_session, unsigned int*).Lee Hambley3-0/+41
2011-10-28Implement ssh_options_get(ssh_session, enum ssh_options_e, char**).Lee Hambley3-0/+134
2011-10-17bind: Fix ssh_bind_listen in normal case.Andreas Schneider1-5/+6
2011-10-13server: use app-provided bind socket when availableAris Adamantiadis1-17/+19
2011-10-13server: ssh_bind_accept_fdAris Adamantiadis2-52/+85
This function will not call accept() but use function parameter instead
2011-10-04doc: Improve doc of ssh_get_pubkey_hash().Andreas Schneider1-0/+4
2011-10-03packet: cleaner logs with less redundant infoAris Adamantiadis2-41/+14
2011-09-25server: pubkey auth doesn't work with ecdhAris Adamantiadis1-2/+2
2011-09-24Fix warningAris Adamantiadis1-0/+1
2011-09-24pki: ssh_pki_generateAris Adamantiadis5-0/+97
for both gcrypt and openssl