Age | Commit message (Expand) | Author |
2017-04-30 | Add a tls_keypair_clear_key() function that uses freezero() to make key | Joel Sing |
2017-04-29 | Fix a bug caused by the return value being set early to signal successful | Joel Sing |
2017-04-29 | Revert previous - we still want to do this, but I forgot about the installer | Bob Beck |
2017-04-29 | We now require you to have a working libpthread | Bob Beck |
2017-04-29 | Make it safe to call SSL_library_init more than once. | Bob Beck |
2017-04-29 | Stop calling OPENSSL_init() internally, since it is a no-op. Also place | Joel Sing |
2017-04-29 | Switch Linux getrandom() usage to non-blocking mode, continuing to | Bob Beck |
2017-04-28 | Revert previous change that forced consistency between return value and | Bob Beck |
2017-04-28 | revert previous accidental commit | Bob Beck |
2017-04-28 | *** empty log message *** | Bob Beck |
2017-04-28 | Reference the "Futexes Are Tricky" paper. | Martin Pieuchot |
2017-04-28 | errant space; | Jason McIntyre |
2017-04-28 | Document futex(2) with a lot of inputs from schwarze@ | Martin Pieuchot |
2017-04-27 | ntohl() returns uint32_t so it cannot be < 0. Since we're storing | Todd C. Miller |
2017-04-27 | Remove "len < 0" check; len is socklen_t (uint32_t) so can't be | Todd C. Miller |
2017-04-27 | tls_free(3) and tls_config_free(3) accept NULL; | Ingo Schwarze |
2017-04-27 | Remove the "volatile" attribute from bpf_error(). The "volatile" | Todd C. Miller |
2017-04-27 | Remove useless check for ks_env_table being NULL. Since ks_env_table | Todd C. Miller |
2017-04-23 | Rearrange text a bit to make it clear what "discarded" means; ok jmc@ deraadt@ | Otto Moerbeek |
2017-04-22 | For small allocations (chunk) freezero only validates the given | Otto Moerbeek |
2017-04-20 | add previous to NAME; | Jason McIntyre |
2017-04-20 | Add getptmfd(), fdopenpty(), fdforkpty() functions. These allow programs | Nicholas Marriott |
2017-04-20 | Fix previous. | Visa Hankala |
2017-04-20 | Get TCB address using the RDHWR instruction instead of __get_tcb(). | Visa Hankala |
2017-04-19 | Switch base tools from /dev/bpf0 to /dev/bpf. Now that /dev/bpf has been | Martin Natano |
2017-04-18 | don't forget to fill in canary bytes for posix_memalign(3); reported by | Otto Moerbeek |
2017-04-18 | Add sparc64 support. | Mark Kettenis |
2017-04-18 | wipe some more macros that do not belong in C++ forwarding headers. | Marc Espie |
2017-04-18 | use freezero() instead of explicit_bzero+free | Theo de Raadt |
2017-04-17 | use freezero() | Theo de Raadt |
2017-04-17 | consictently use .Dv NULL and a few other tweaks; ok schwarze@ | Otto Moerbeek |
2017-04-17 | whitespace fixes | Otto Moerbeek |
2017-04-17 | Change build infrastructure to allow building both gcc and clang. This | Mark Kettenis |
2017-04-16 | Always return nonzero from _longjmp too. | Mark Kettenis |
2017-04-16 | backout previous, data_len is not always initialized | Otto Moerbeek |
2017-04-15 | Document RB_TIMEBAD; delete RB_* that are obsolete/unimplemented | Philip Guenther |
2017-04-14 | Use freezero(3) when cleaning up session tickets - not only does it require | Joel Sing |
2017-04-14 | Use freezero(3) to clean up the X25519 keys - simpler, cleaner code. | Joel Sing |
2017-04-14 | Use freezero(3) in the CBB clean up path, since this could hold sensitive | Joel Sing |
2017-04-14 | Switch i2d_SSL_SESSION() back to freezero(3) now that the size constraints | Joel Sing |
2017-04-14 | Clean up server key exchange EC point handling. Encode the point directly | Joel Sing |
2017-04-14 | whitespace | Theo de Raadt |
2017-04-14 | correct path; from Klemens Nanni | Theo de Raadt |
2017-04-13 | Xr sigprocmask(2) not the obsolete sigsetmask(3) | Todd C. Miller |
2017-04-13 | Use recallocarray in getdelim/getline to clear memory on buffer resizes, | Bryan Steele |
2017-04-13 | allow clearing less than allocated and document freezero(3) better | Otto Moerbeek |
2017-04-12 | Use calloc(3) and recallocarray(3) instead of *alloc* + memset(0). | Theo Buehler |
2017-04-12 | SipHash_Final() was assuming the digest was 64-bit aligned, resulting in | Theo de Raadt |
2017-04-12 | New strstr() implementation from musl libc by Rich Felker. This | Todd C. Miller |
2017-04-11 | Revert ssl_asn1.c r1.50 - CBB and freezero(3) do not play nicely together. | Joel Sing |