| Commit message (Expand) | Author | Age | Files | Lines |
* | In sshkey_in_file(), ignore keys that are considered for being too |  djm | 2018-09-21 | 1 | -4/+10 |
* | replace cast with call to sshbuf_mutable_ptr(); ok djm@ |  markus | 2018-07-09 | 1 | -2/+2 |
* | switch config file parsing to getline(3) as this avoids static limits |  markus | 2018-06-06 | 1 | -11/+11 |
* | Add experimental support for PQC XMSS keys (Extended Hash-Based Signatures) |  markus | 2018-02-23 | 1 | -1/+7 |
* | remove post-SSHv1 removal dead code from rsa.c and merge the |  djm | 2017-07-01 | 1 | -2/+1 |
* | Switch to recallocarray() for a few operations. Both growth and shrinkage |  deraadt | 2017-05-31 | 1 | -14/+2 |
* | revise sshkey_load_public(): remove ssh1 related comments, remove extra |  markus | 2017-05-30 | 1 | -23/+21 |
* | unifdef WITH_SSH1 |  djm | 2017-04-30 | 1 | -55/+1 |
* | incorrect renditions of this quote bother me |  deraadt | 2017-03-26 | 1 | -2/+2 |
* | use sshbuf_allocate() to pre-allocate the buffer used for loading |  djm | 2016-11-25 | 1 | -2/+14 |
* | make private key loading functions consistently handle NULL |  djm | 2016-04-09 | 1 | -12/+22 |
* | Remove NULL-checks before sshbuf_free(). |  mmcc | 2015-12-11 | 1 | -5/+3 |
* | Remove NULL-checks before sshkey_free(). |  mmcc | 2015-12-11 | 1 | -9/+5 |
* | Remove NULL-checks before free(). |  mmcc | 2015-12-10 | 1 | -3/+2 |
* | - Fix error message: passphrase needs to be at least 5 characters, not 4. |  tim | 2015-09-13 | 1 | -3/+3 |
* | re-enable ed25519-certs if compiled w/o openssl; ok djm |  markus | 2015-07-09 | 1 | -3/+3 |
* | delete support for legacy v00 certificates; "sure" markus@ dtucker@ |  djm | 2015-07-03 | 1 | -2/+2 |
* | s/recommended/required/ that private keys be og-r |  djm | 2015-04-17 | 1 | -2/+2 |
* | fd leak for !ssh1 case; found by unittests; ok markus@ |  djm | 2015-03-31 | 1 | -1/+3 |
* | KRL support doesn't need OpenSSL anymore, remove #ifdefs |  djm | 2015-03-18 | 1 | -3/+1 |
* | add an XXX to remind me to improve sshkey_load_public |  djm | 2015-02-23 | 1 | -1/+4 |
* | Reduce use of <sys/param.h> and transition to <limits.h> throughout. |  deraadt | 2015-01-20 | 1 | -3/+3 |
* | deprecate key_load_private_pem() and sshkey_load_private_pem() |  djm | 2015-01-08 | 1 | -40/+24 |
* | add RevokedHostKeys option for the client |  djm | 2014-12-04 | 1 | -10/+48 |
* | New key API: refactor key-related functions to be more library-like, |  djm | 2014-06-24 | 1 | -1088/+316 |
* | make compiling against OpenSSL optional (make OPENSSL=no); |  markus | 2014-04-29 | 1 | -1/+32 |
* | buffer_get_string_ptr's return should be const to remind |  djm | 2014-04-28 | 1 | -2/+3 |
* | correct test that kdf name is not "none" or "bcrypt" |  djm | 2014-03-12 | 1 | -2/+2 |
* | convert memset of potentially-private data to explicit_bzero() |  djm | 2014-02-02 | 1 | -7/+7 |
* | replace most bzero with explicit_bzero, except a few that cna be memset |  tedu | 2014-01-31 | 1 | -4/+4 |
* | don't refuse to load Ed25519 certificates |  djm | 2013-12-29 | 1 | -1/+2 |
* | support ed25519 keys (hostkeys and user identities) using the public domain |  markus | 2013-12-06 | 1 | -1/+9 |
* | new private key format, bcrypt as KDF by default; details in PROTOCOL.key; |  markus | 2013-12-06 | 1 | -10/+361 |
* | Add a new protocol 2 transport cipher "chacha20-poly1305@openssh.com" |  djm | 2013-11-21 | 1 | -3/+3 |
* | bye, bye xfree(); ok markus@ |  djm | 2013-05-17 | 1 | -5/+5 |
* | add the ability to query supported ciphers, MACs, key type and KEX |  djm | 2013-04-19 | 1 | -3/+3 |
* | support AES-GCM as defined in RFC 5647 (but with simpler KEX handling) |  markus | 2013-01-08 | 1 | -3/+3 |
* | add encrypt-then-mac (EtM) modes to openssh by defining new mac algorithms |  markus | 2012-12-11 | 1 | -3/+3 |
* | memleak in key_load_file(); from Jan Klemkow |  markus | 2012-01-25 | 1 | -2/+2 |
* | make sure key_parse_public/private_rsa1() no longer consumes its input buffer. |  markus | 2011-06-14 | 1 | -25/+28 |
* | read in key comments for v.2 keys (though note that these are not |  djm | 2011-05-23 | 1 | -3/+6 |
* | warn on unexpected key type in key_parse_private_type() |  djm | 2011-05-13 | 1 | -1/+2 |
* | despam debug() logs by detecting that we are trying to load a private key |  djm | 2011-05-10 | 1 | -1/+4 |
* | allow "ssh-add - < key"; feedback and ok markus@ |  djm | 2011-05-04 | 1 | -36/+64 |
* | correctly load comment for encrypted rsa1 keys; |  markus | 2010-11-29 | 1 | -2/+3 |
* | Refactor internals of private key loading and saving to work on memory |  djm | 2010-11-21 | 1 | -193/+254 |
* | fix a possible NULL deref on loading a corrupt ECDH key |  djm | 2010-10-28 | 1 | -9/+5 |
* | typo |  djm | 2010-09-08 | 1 | -2/+2 |
* | Implement Elliptic Curve Cryptography modes for key exchange (ECDH) and |  djm | 2010-08-31 | 1 | -1/+31 |
* | commited the wrong version of the hostbased certificate diff; this |  djm | 2010-08-04 | 1 | -5/+7 |