Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | make sshbuf_putb(b, NULL) a no-op | 2020-06-05 | 1 | -1/+3 | |
| | |||||
* | allow sshbuf_put_stringb(buf, NULL); ok markus@ | 2019-12-13 | 1 | -1/+4 | |
| | |||||
* | lots of things were relying on libcrypto headers to transitively | 2019-09-06 | 1 | -1/+2 | |
| | | | | | include various system headers (mostly stdlib.h); include them explicitly | ||||
* | add some functions to perform random-access read/write operations | 2019-07-14 | 1 | -1/+162 | |
| | | | | | | | inside buffers with bounds checking. Intended to replace manual pointer arithmetic wherever possible. feedback and ok markus@ | ||||
* | fix casts re constness | 2017-06-01 | 1 | -2/+2 | |
| | |||||
* | Include stdarg.h for va_copy as per man page. | 2016-06-16 | 1 | -1/+3 | |
| | |||||
* | Compare pointers to NULL rather than 0. | 2015-10-20 | 1 | -4/+4 | |
| | | | | ok djm@ | ||||
* | avoid BIGNUM in KRL code by using a simple bitmap; | 2015-01-14 | 1 | -1/+37 | |
| | | | | feedback and ok markus | ||||
* | apparently memcpy(x, NULL, 0) is undefined behaviour according to | 2015-01-12 | 1 | -7/+12 | |
| | | | | | C99 (cf. sections 7.21.1 and 7.1.4), so check skip memcpy calls when length==0; ok markus@ | ||||
* | convert KRL code to new buffer API | 2014-12-04 | 1 | -2/+2 | |
| | | | | ok markus@ | ||||
* | New buffer API; the first installment of the conversion/replacement | 2014-04-30 | 1 | -0/+419 | |
of OpenSSH's internals to make them usable as a standalone library. This includes a set of wrappers to make it compatible with the existing buffer API so replacement can occur incrementally. With and ok markus@ Thanks also to Ben Hawkes, David Tomaschik, Ivan Fratric, Matthew Dempsky and Ron Bowes for a detailed review. |