Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-05-09 | when demonstrating the correct "double-check" idiom, provide a | Theo de Raadt | |
reminder that the return value is int... | |||
2014-05-08 | move reallocarray() to a seperate file so that -portable applications | Theo de Raadt | |
can avoid reinventing the wheel ok guenther schwarze | |||
2014-05-08 | Replace hand-crafted STRICT_ALIGNMENT with system provided __STRICT_ALIGNMENT. | Miod Vallat | |
Forgotten during yesterday's STRICT_ALIGNMENT cleanup commit. | |||
2014-05-08 | More KNF. | Joel Sing | |
2014-05-08 | KNF. | Joel Sing | |
2014-05-08 | Remove KSSL debug code. | Joel Sing | |
"fire bomb" tedu@ | |||
2014-05-08 | KNF. | Joel Sing | |
2014-05-08 | Nuke OPENSSL_FIPS - having #ifdefs inside a #ifndef for the same thing | Joel Sing | |
is amusing. ok deraadt@ | |||
2014-05-08 | KNF. | Joel Sing | |
2014-05-08 | knfectomie. | Joel Sing | |
2014-05-08 | Emergency knfectomie requested by tedu@. | Joel Sing | |
2014-05-08 | kill some more VMS ifdefs | Giovanni Bechis | |
ok miod@ | |||
2010-10-01 | import OpenSSL-1.0.0a | Damien Miller | |
2008-09-06 | import of OpenSSL 0.9.8h | Damien Miller | |
2005-04-29 | import of openssl-0.9.7g; tested on platforms from alpha to zaurus, ok deraadt@ | Damien Miller | |
2014-05-07 | Get __STRICT_ALIGNMENT from <machine/endian.h> and decide upon it, rather | Miod Vallat | |
than defining it for not (i386 and amd64 (and sometimes s390)) only. Compile-time tests remain compile-time tests, and runtime-test remain runtime-test instead of being converted to compile-time tests, per matthew@'s explicit demand (rationale: this makes sure the compiler checks your code even if you won't run it). No functional change except on s390 (which we don't run on) and vax (which we run on, but noone cares about) ok matthew@ | |||
2014-05-07 | less than jpake | Ted Unangst | |
2014-05-07 | don't free memory unless we allocated it. | Ted Unangst | |
reported to openssl by David Ramos (rt 3338) stealing commit from logan, who's run away. ok miod. | |||
2014-05-07 | with the first bug it uncovered fixed, clear all bignums again. | Ted Unangst | |
i've never worked on codebase so resistant to efforts to improve it. | |||
2014-05-07 | in BN_clear_free, don't cleanse the data if the static data flag is set. | Ted Unangst | |
much debugging work done by otto. ok miod otto. side note: BN_FLG_STATIC_DATA doesn't actually mean the data is static. it's also used to indicate the data may be secretly shared behind your back as a sort of poor man's refcounting, but without the refcounting. | |||
2014-05-07 | comment style fix | Alexander Hall | |
ok crickets@ | |||
2014-05-07 | KNF. | Joel Sing | |
2014-05-07 | KNF. | Joel Sing | |
2012-10-13 | import OpenSSL-1.0.1c | Damien Miller | |
2010-10-01 | import OpenSSL-1.0.0a | Damien Miller | |
2014-05-07 | revert, thanks sthen | Ted Unangst | |
2014-05-07 | add additional includes from eng_cryptodev.c | Jonathan Gray | |
makes this compile with OPENSSL_NO_DEPRECATED defined. ok deraadt@ | |||
2014-05-07 | Kill the {nd6_,}useloopback buttons, using the loopback interface for | Martin Pieuchot | |
local traffic is not optional. ok mikeb@, stsp@, jca@ | |||
2014-05-07 | use calloc. from Peter Malone | Ted Unangst | |
2014-05-07 | miod forgot about fcrypt_b.c being needed, before he went off to get his | Theo de Raadt | |
beauty sleep. He's probably having a nightmare about this right now.... ok tedu | |||
2014-05-06 | We don't really need uniform distribution for mktemp(3) so use | Todd C. Miller | |
arc4random_buf() to avoid lots of arc4random() calls with a getpid() syscall for each one. We fetch 32 bytes of random data at a time which can handle up to 16 Xs. 16 Xs should be enough for anyone. Requested and OK deraadt@ | |||
2014-05-06 | small fix from mancha1. currently unused file, but no harm fixing it. | Ted Unangst | |
2014-05-06 | Assorted cleanups: | Miod Vallat | |
- replace hardcoded sizes with sizeof() - pqueue_find() apparently used to need to keep track of the previous node when iterating, which causes its logic to be complicated. However, nowadays it only needs to iterate, so replace with a straightforward, much readable logic. - remove #if 0'ed code From ``sin'' from 2f30 dot org on tech@, thanks! | |||
2014-05-06 | Remove broken-by-design test | Miod Vallat | |
2014-05-06 | Make sure PKCS7_get_octet_string() return values are checked for NULL. | Miod Vallat | |
Reported by David Ramos (and simultaneously to OpenSSL as PR#3339). ok beck@ logan@ | |||
2014-05-06 | Sort CFLAGS, SRC and SSLASM stanzas by the directories they apply to, to make | Miod Vallat | |
these files similar in layout to the other md Makefile.inc; no functional change. | |||
2014-05-06 | missing NULL checks to see if init is needed. found hard way by deraadt. | Ted Unangst | |
2014-05-06 | fix stupid commit | Ted Unangst | |
2014-05-06 | enh@google reported a warning in crufty y2k code. just delete it. | Ted Unangst | |
ok deraadt stsp | |||
2014-05-06 | reallocarray for things which are arrays. ok deraadt | Ted Unangst | |
2014-05-06 | use explicit_bzero | Ted Unangst | |
2014-05-06 | clear a stack buffer with explicit_bzero | Ted Unangst | |
2014-05-06 | knf approximation | Ted Unangst | |
2014-05-06 | move chacha context and buffer out of bss and allow mmap to place them | Ted Unangst | |
wherever it decides it would like them. first step. ok deraadt dlg djm | |||
2014-05-06 | "stay backwards-compatible with 0.9.5; this should go away soon" | Ted Unangst | |
it's your lucky day! | |||
2014-05-06 | remove Kerberos | Ted Unangst | |
2014-05-06 | move a comment to make unifdef happier | Ted Unangst | |
2014-05-06 | bye bye SRP | Ted Unangst | |
2008-09-06 | import of OpenSSL 0.9.8h | Damien Miller | |
2014-05-05 | inspired by a cloudflare diff, cleanse old memory when expanding a bignum. | Ted Unangst | |
however, instead of trying to audit all the places where a secret bignum is used, apply the big hammer and clear all bignums when freed. ok deraadt miod |