| Commit message (Expand) | Author | Age | Files | Lines |
* | Document a known bug in the DES crypt cipher implementation which we're | stsp | 2012-11-30 | 1 | -2/+6 |
* | arc4random_buf is the easy way to fill a buffer now. ok deraadt | tedu | 2012-09-04 | 1 | -10/+3 |
* | remove reference to no longer existing description of nonexistent devices; | naddy | 2012-07-26 | 1 | -7/+4 |
* | Change arc4random_uniform() to calculate ``2**32 % upper_bound'' as | matthew | 2012-06-24 | 1 | -12/+3 |
* | Update STANDARDS section for a few <stdlib.h> functions | guenther | 2012-06-02 | 1 | -5/+6 |
* | remove comment that hasn't been true for quite a while now; | otto | 2010-12-22 | 1 | -6/+1 |
* | remove skipjack and cast from the libc; ok deraadt | mikeb | 2010-10-28 | 3 | -1053/+2 |
* | Use MACHINE_CPU instead of MACHINE_ARCH to pick the correct machine dependent | miod | 2010-02-03 | 1 | -2/+2 |
* | No point in refreshing the pid from inside arc4_stir() when that | guenther | 2009-12-15 | 1 | -6/+15 |
* | s/Mhz/MHz/, MHz is a multiple of the SI unit hertz (whose symbol is Hz). | sobrado | 2009-10-31 | 1 | -2/+2 |
* | repair the ARC4 story; ok jmc djm millert | deraadt | 2008-12-23 | 1 | -5/+7 |
* | zap __arc4_getbyte(), it was only used by the old malloc; ok millert@ | otto | 2008-10-03 | 1 | -14/+1 |
* | fix an Xr, and use a more appropriate macro; | jmc | 2008-06-09 | 1 | -4/+4 |
* | arc4random_stir() does not use /dev/arandom anymore, but sysctl kern.arandom | deraadt | 2008-06-08 | 1 | -4/+6 |
* | fix math screwup that reintroduced a bias for upper_bounds in range | djm | 2008-06-04 | 1 | -2/+2 |
* | Zero state buffers on return. OK deraadt@ | millert | 2008-04-02 | 1 | -1/+5 |
* | - add NAME entries for arc4random_buf and arc4random_uniform | jmc | 2008-03-16 | 1 | -2/+4 |
* | Add missing MLINKS | deraadt | 2008-03-16 | 1 | -1/+2 |
* | diff from djm@ committed at his request: | otto | 2008-03-16 | 2 | -3/+84 |
* | - make arc4random*() functions thread safe. Use a custom spinlock function | kurt | 2008-01-01 | 1 | -41/+56 |
* | add a RETURN VALUES section. | pyr | 2007-10-08 | 1 | -9/+9 |
* | convert to new .Dd format; | jmc | 2007-05-31 | 3 | -6/+6 |
* | macros at start of line require a `.'; | jmc | 2007-05-02 | 1 | -2/+2 |
* | Document the lack of error return value in arc4random. | pyr | 2007-05-02 | 1 | -1/+4 |
* | Get rid of useless #if 0 block, especially since the code is included | ray | 2007-03-19 | 1 | -5/+1 |
* | Change hard coded numbers to sizeof(buf). Also change some | ray | 2007-02-20 | 1 | -3/+3 |
* | provide an libc internal interface to get random bytes, to be used by malloc | otto | 2007-02-12 | 1 | -3/+12 |
* | no point mentioning functions if we have nothing useful to say | jmc | 2006-08-05 | 1 | -13/+1 |
* | wording/grammar tweaks; | jmc | 2006-07-26 | 1 | -3/+4 |
* | better macros; | jmc | 2006-07-26 | 1 | -6/+6 |
* | document `iv'; | jmc | 2006-07-26 | 1 | -1/+4 |
* | updates from nicholas marriott; | jmc | 2006-07-25 | 1 | -5/+9 |
* | allocate gsalt large enough; from Matthew R. Dempsky <mrd at alkemio | otto | 2006-07-04 | 1 | -2/+2 |
* | be more careful with atoi() result; ok otto | deraadt | 2006-04-03 | 1 | -3/+5 |
* | Use sysctl(KERN_ARND) to get n bytes, instead of just 4 at a time | otto | 2005-11-30 | 1 | -9/+2 |
* | add bf_{ecb,cbc}_{en,de}crypt to the .Nm list; | jmc | 2005-10-02 | 1 | -2/+6 |
* | add bcrypt_gensalt, bcrypt, and md5crypt, to the .Nm list; | jmc | 2005-10-02 | 1 | -2/+5 |
* | zap remaining rcsid. | espie | 2005-08-08 | 3 | -15/+3 |
* | punctuation and minor rewording, ok jmc | jaredy | 2005-07-17 | 2 | -6/+6 |
* | RC4 is a trademark. Rest of text left intact. | kjell | 2005-06-07 | 1 | -2/+2 |
* | Change email address for author, at his request. | kjell | 2005-06-06 | 1 | -2/+2 |
* | Change license to standard OpenBSD boilerplate, with permission | kjell | 2005-06-06 | 1 | -6/+15 |
* | use the new fat random sysctl to get initial state. (fallback to looping). | tedu | 2005-06-04 | 1 | -12/+14 |
* | sync setkey prototype with reality | millert | 2005-05-26 | 1 | -2/+2 |
* | Be correct in our man pages when talking about NUL termination (that is, | cloder | 2005-02-25 | 1 | -4/+4 |
* | Test the upper limit for the max # of rounds to, to avoid wrapping and ending | otto | 2004-12-22 | 1 | -2/+7 |
* | knf, no binary change | hshoexer | 2004-11-03 | 1 | -54/+65 |
* | ansi, indentation, etc. | hshoexer | 2004-11-02 | 1 | -17/+8 |
* | kill spaces | hshoexer | 2004-11-02 | 1 | -3/+3 |
* | add some missing $, ok djm@ 'That looks fine to me' millert@ | jsg | 2004-10-01 | 1 | -0/+2 |