aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorFilesLines
2020-05-05options: Avoid memory leaks during modification of argvJakub Jelen1-8/+1
2020-05-05options: Properly handle unknown options with argumentsJakub Jelen1-2/+18
2020-05-05packet: Skip HMAC handling if none is selectedJakub Jelen2-23/+30
2020-05-05packet: Check if set_*_key functions exists before calling itJakub Jelen1-15/+19
2020-05-05packet: Use temporary variables to avoid long linesJakub Jelen1-14/+12
2020-05-05Add basic support for none cipher and MACsJakub Jelen5-4/+73
2020-05-05pki: Mark explicit fall throughJakub Jelen1-1/+1
2020-05-05external: Do not confuse new gccJakub Jelen1-1/+1
2020-05-05client: Properly indicate fall throughJakub Jelen1-1/+1
2020-04-24session: add missing return value documentationHeiko Thiery1-1/+2
2020-04-20config: Check null derefJakub Jelen1-0/+3
2020-04-20channels: Avoid returning SSH_AGAIN from ssh_channel_poll_timeout()Jakub Jelen1-0/+6
2020-04-20channels: reformatJakub Jelen1-2/+2
2020-04-20config_parser: Allow equal sign as a separator and eat up trailing whitespaceJakub Jelen1-10/+23
2020-04-20Disable RSA and DSA keys with sha1 by defaultJakub Jelen1-11/+21
2020-04-15Reformat ssh_bind_accept()Jakub Jelen1-25/+28
2020-04-15libcrypto-compat: Fix indentation and return valueJakub Jelen1-1/+2
2020-04-15libcrypto: remove deprecated API usageRosen Penev1-5/+4
2020-04-15libcrypto-compat: add extra functionsRosen Penev2-0/+20
2020-04-15Correctly parse v4 subsecond timestampsStefanBruens1-15/+15
2020-04-09client: Check if the library is initialized in ssh_connect()Anderson Toshiyuki Sasaki1-0/+7
2020-04-09client: Reformat ssh_connect()Anderson Toshiyuki Sasaki1-99/+111
2020-04-09init: Introduce internal is_ssh_initialized()Anderson Toshiyuki Sasaki1-0/+19
2020-04-09init: Clarify the need to call ssh_{init, finalize}()Anderson Toshiyuki Sasaki1-7/+18
2020-04-09CVE-2020-1730: Fix a possible segfault when zeroing AES-CTR keyAndreas Schneider1-2/+6
2020-04-06src/pki_crypto.c corrects the incorrect usage of enumSahana Prasad1-2/+2
2020-04-06kex: Add support for diffie-hellman-group14-sha256Anderson Toshiyuki Sasaki7-0/+13
2020-04-02dh-gex: Check return value of ssh_get_random()Andreas Schneider1-2/+7
2020-04-01cmake: Fix building with threading support on MinGWAndreas Schneider1-0/+7
2020-03-29auth: Fix memory leak in ssh_userauth_publickey_auto()Anderson Toshiyuki Sasaki1-0/+5
2020-02-12pki: Small code cleanup in ssh_pki_signature_verify()Andreas Schneider1-2/+4
2020-02-12pki: Use SSH_BUFFER_FREE() in ssh_pki_signature_verify()Andreas Schneider1-1/+1
2020-02-12pki: Add missing return check for ssh_buffer_pack()Andreas Schneider1-4/+10
2020-02-12pki: Fix memory leak of blob on errorAndreas Schneider1-0/+1
2020-02-12channels: Replace PRIdS with ANSI C99 %zuAndreas Schneider1-2/+2
2020-02-12sftp: Replace PRIdS with ANSI C99 %zuAndreas Schneider1-2/+2
2020-02-12packet: Replace PRIdS with ANSI C99 %zuAndreas Schneider2-3/+3
2020-02-11src: updates documentation incorporate PKCS#11 URIs in import functions.Sahana Prasad1-4/+6
2020-02-11pki: add support for sk-ecdsa and sk-ed25519Sebastian Kinne4-13/+231
2020-02-11pki: fix `pki_key_ecdsa_to_key_type` thread-safetyJon Simons3-3/+3
2020-01-23channels: Fix ssh_channel_poll_timeout() not returing available bytesAndreas Schneider1-0/+5
2020-01-23Implement chacha20-poly1305 in mbedTLSJakub Jelen1-1/+345
2020-01-23Implement ChaCha20-poly1305 cipher using native OpenSSLJakub Jelen2-4/+411
2020-01-23Do not build in internal chacha implementation if gcrypt supports thatJakub Jelen1-3/+14
2020-01-23chacha: Create common file to avoid code duplicationJakub Jelen2-22/+4
2020-01-23packet_crypt: Check return values from AEAD decipheringJakub Jelen1-4/+4
2020-01-23curve25519: Avoid memory leaksJakub Jelen1-17/+14
2020-01-23pki: Avoid uneeded memory duplicationAndreas Schneider1-2/+2
2020-01-23misc: Make the src pointer const in ssh_strreplace()Andreas Schneider1-1/+1
2020-01-23misc: Simplifies ssh_strreplace().Sahana Prasad1-13/+14