Age | Commit message (Expand) | Author |
2017-03-20 | Generate the bogus challenge using arc4random_buf(3) instead of reading | Theo Buehler |
2017-03-20 | use explicit_bzero. one from Ricardo Mestre plus two more. | Ted Unangst |
2017-03-19 | Stop setting the second register; it's unnecessary on 64bit archs | Philip Guenther |
2017-03-18 | Simplify fork/vfork logic: the kernel has handled returning zero in the child | Mark Kettenis |
2017-03-18 | Use the userspace-visible thread register directly in __cerror instead | Mark Kettenis |
2017-03-18 | Fewer magic numbers. | Joel Sing |
2017-03-18 | t1_enc.c | Joel Sing |
2017-03-18 | Currently tls1_PRF() requires that a temporary buffer be provided, that | Joel Sing |
2017-03-18 | Make brk(2) actually work and sync the brk()/sbrk() implementation with arm, | Mark Kettenis |
2017-03-18 | Use recallocarray() to avoid leaving detritus in memory when resizing | Theo de Raadt |
2017-03-17 | remove unneccessary macro; | Jason McIntyre |
2017-03-17 | Strengthen description of recallocarray(3) behaviour, hoping that readers | Theo de Raadt |
2017-03-17 | Use recallocarray() to avoid leaving detritus in memory when resizing | Todd C. Miller |
2017-03-17 | recallocarray() the string buffer, to avoid leaving such contents | Theo de Raadt |
2017-03-17 | Use recallocarray() to avoid leaving detritus in memory when resizing | Theo de Raadt |
2017-03-17 | Grow buffers using recallocarray, to avoid the potential dribble that | Theo de Raadt |
2017-03-16 | sync the vfs bits as best i can; | Jason McIntyre |
2017-03-16 | Only reallocate the buffer to fit for medium-size allocations where | Todd C. Miller |
2017-03-16 | bit more consistent; | Jason McIntyre |
2017-03-16 | When reallocating the buffer for asprintf(), just round up to the | Todd C. Miller |
2017-03-16 | Convert BUF_MEM_grow() and BUF_MEM_grow_clean() to recallocarray(), | Joel Sing |
2017-03-16 | Use calloc() instead of malloc() followed by manually zeroing fields. | Joel Sing |
2017-03-16 | Fix overly-conservative overflow checks on mulitplications and add checks | Darren Tucker |
2017-03-15 | use recallocarray to resize buffer - ensures that detritus from previous | Theo de Raadt |
2017-03-15 | Collapse underflow and overflow checks into a single block. | Darren Tucker |
2017-03-15 | Catch integer underflow in scan_scaled reported by Nicolas Iooss. | Darren Tucker |
2017-03-14 | Use a macro for the initial length of the buffer instead of 127; OK deraadt@ | Todd C. Miller |
2017-03-14 | don't need to handle the malloc case special, since realloc works | Theo de Raadt |
2017-03-13 | - no KERN_RND: from schwarze | Jason McIntyre |
2017-03-13 | for each sysctl name, attach the variable name as seen by sysctl(8); | Jason McIntyre |
2017-03-11 | fix signed integer overflow in scan_scaled. Found by Nicolas Iooss | Damien Miller |
2017-03-11 | shuffle back: wxabort is described in sysctl(3); | Jason McIntyre |
2017-03-11 | repair Xr, and point to sysctl(8) instead because sysctl(3) fails to | Theo de Raadt |
2017-03-10 | Remove the handshake digests and related code, replacing remaining uses | Joel Sing |
2017-03-10 | Switch CBB to use recallocarray() - this ensures that we do not leak | Joel Sing |
2017-03-10 | First pass at cleaning up the tls1_P_hash() function - remove a pointless | Joel Sing |
2017-03-10 | Make tls1_PRF() non-static so it can be regress tested. | Joel Sing |
2017-03-08 | Correct arm64 sigprocmask parameter passing in setjmp/longjmp calls. | Dale Rahn |
2017-03-07 | If tcsetpgrp() is called by a background process and there is a | Todd C. Miller |
2017-03-07 | Correctly handle TLS PRF with MD5+SHA1 - the secret has to be partitioned | Joel Sing |
2017-03-07 | Some tweaks from jmc@ and describe better what recallocarray does; | Otto Moerbeek |
2017-03-06 | recallocarray bump | Otto Moerbeek |
2017-03-06 | Introducing recallocarray(3), a blend of calloc(3) and reallocarray(3) | Otto Moerbeek |
2017-03-06 | size is unsigned so using ==0 not <=0 when checking for buffer exhaustion | Todd C. Miller |
2017-03-06 | Pull in a change from the bind 8 resolver that fixes a potential | Todd C. Miller |
2017-03-06 | Clean up and simplify the tls1_PRF() implementation now that we have a | Joel Sing |
2017-03-05 | Correctly convert an SSLv2 challenge into an SSLv3/TLS client random by | Joel Sing |
2017-03-05 | Provide a rolling handshake hash that commences as soon as the cipher | Joel Sing |
2017-03-05 | Convert various handshake message generation functions to CBB. | Joel Sing |
2017-03-04 | Drop the second argument of dtls1_set_message_header() and make it a void | Joel Sing |