Age | Commit message (Expand) | Author |
2014-12-08 | delete documentation for deleted DES interfaces | Ted Unangst |
2014-12-08 | remove setkey and encrypt interfaces. they are useless and dangerous. | Ted Unangst |
2014-12-02 | macro cleanup; kaspars at bankovskis dot net | Ingo Schwarze |
2014-11-25 | rand48(3) not drand48(3) to align with the actual man page and Xr | Todd C. Miller |
2014-11-25 | no need for md5 xr | Ted Unangst |
2014-11-25 | revert the bludgeoning of DES. if we need a thread safe crypt, maybe it's | Ted Unangst |
2014-11-25 | push some global data down into functions to make this threadlier. | Ted Unangst |
2014-11-24 | introduce a hashspace define and check that there's enough space to | Ted Unangst |
2014-11-24 | check crypt() for null. noticed by Jonas Termansen | Ted Unangst |
2014-11-21 | space needed between macro args and punctuation; | Jason McIntyre |
2014-11-21 | add ERRORS, HISTORY, AUTHORS, Copyright year, and some missing macros; | Ingo Schwarze |
2014-11-21 | Let crypt_checkpass() set EACCES after bcrypt_checkpass() failure; | Ingo Schwarze |
2014-11-21 | change prototype for crypt_newhash. the login_cap_t is a holdover from its | Ted Unangst |
2014-11-20 | split crypt_checkpass off into a new file | Ted Unangst |
2014-11-18 | add crypt_newhash to NAME and add an MLINK; | Jason McIntyre |
2014-11-17 | add new function crypt_newhash to simplify creating new hashes. | Ted Unangst |
2014-07-21 | missing newline | Theo de Raadt |
2014-07-20 | Move more OS-specific functionality to arc4random.h headers. | bcook |
2014-07-20 | From ISO/IEC 9899:1999 and 9899:201x, | Philip Guenther |
2014-07-19 | arc4random re-seeds with getentropy() now; ok deraadt@ jmc@ | Christian Weisgerber |
2014-07-19 | Change _rs_allocate so it can combine the two regions (rs and rsx) | Theo de Raadt |
2014-07-18 | Seperate arc4random's os-dependent parts into static inline functions, | Theo de Raadt |
2014-07-17 | "Race-free because we're running single-threaded in a new | Theo de Raadt |
2014-07-16 | #ifdef wrap the _rs_forkhandler | Theo de Raadt |
2014-07-16 | added handler for an atfork hook from kettenis@ | bcook |
2014-07-13 | While we thought this would make portable life easier it actually | Bob Beck |
2014-07-12 | Wrap "thread_private.h" with #ifdef __OpenBSD__ so that other systems | Theo de Raadt |
2014-07-12 | Split arc4random_uniform into it's own file, to assist other projects | Theo de Raadt |
2014-07-09 | Clean up after arc4random u_int32_t uint32_t change | Bob Beck |
2014-07-09 | changes to improve portability | bcook |
2014-06-27 | re-init and init code paths are now more shared, so the getpid()-based | Theo de Raadt |
2014-06-26 | Add back an #ifndef MAP_INHERIT_ZERO chunk to support the old getpid() | Theo de Raadt |
2014-06-25 | document why we explicit_bzero | Theo de Raadt |
2014-06-20 | arc4random: hard fail with raise(SIGKILL) if getentropy() returns -1 | Matthew Dempsky |
2014-06-19 | Move rs_chacha and rs_buf into the same memory page and don't mark it | Matthew Dempsky |
2014-06-17 | Use MAP_INHERIT_ZERO in arc4random(3) | Matthew Dempsky |
2014-06-13 | For now... assume success of getentropy() just like we assumed success | Theo de Raadt |
2014-06-13 | use getgentropy() call. If it fails, things are pretty bad -- | Theo de Raadt |
2014-05-31 | Delete the extraneous "return" statement at the end of a void function. | Jeremie Courreges-Anglas |
2014-05-17 | Add missing header needed by isdigit(). | Charles Longeau |
2014-05-17 | refactor some of the des crypt code to use fewer globals. | Ted Unangst |
2014-05-16 | update NAME and MLINKS for previous; | Jason McIntyre |
2014-05-16 | document crypt_checkpass | Ted Unangst |
2014-05-16 | use $2b in the bcrypt example, ok tedu | Stuart Henderson |
2014-05-12 | remove md5crypt. | Ted Unangst |
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 | use explicit_bzero | Ted Unangst |
2014-05-06 | clear a stack buffer with explicit_bzero | Ted Unangst |
2014-05-06 | move chacha context and buffer out of bss and allow mmap to place them | Ted Unangst |