| Commit message (Expand) | Author | Age | Files | Lines |
* | two fairly simple sizes for free() |  deraadt | 2015-08-31 | 1 | -3/+4 |
* | fairly simple sizes for free(); ok tedu |  deraadt | 2015-08-28 | 1 | -3/+5 |
* | Include <sys/param.h> rather than <sys/types.h> when also including |  miod | 2015-03-16 | 1 | -2/+2 |
* | Remove wrong reference to zlib. |  logan | 2015-03-14 | 1 | -2/+2 |
* | Remove some includes include-what-you-use claims don't |  jsg | 2015-03-14 | 6 | -13/+5 |
* | Use standard spelling for types, and rename local variable from "free". |  tedu | 2015-02-20 | 2 | -25/+25 |
* | we want to defer work traditionally (in openbsd) handled in an |  dlg | 2015-02-09 | 1 | -2/+2 |
* | keep this in sync a bit with userland by putting static on functions |  dlg | 2015-02-07 | 1 | -5/+5 |
* | remove the second void * argument on tasks. |  dlg | 2015-01-27 | 1 | -4/+3 |
* | Less code, more better. No longer need to worry about what mysterious |  tedu | 2015-01-16 | 1 | -52/+2 |
* | remove static version string |  tedu | 2015-01-15 | 1 | -3/+1 |
* | simplify des headers by stripping out all the unnecessary userland bits |  tedu | 2015-01-15 | 2 | -296/+17 |
* | Use __buffer__ instead of __string__ as the __bounded type. The former causes |  miod | 2015-01-04 | 1 | -3/+3 |
* | recent changes broke alignment requirements on arm. |  tedu | 2014-12-31 | 1 | -13/+7 |
* | add __bounded as appropriate. |  dlg | 2014-12-30 | 1 | -4/+7 |
* | convert bcopy to memcpy in md5 and sha1. also be consistent about clearing |  tedu | 2014-12-28 | 2 | -28/+16 |
* | remove KPDK. not really used, and a bad choice anyway. ok naddy |  tedu | 2014-12-28 | 4 | -82/+4 |
* | as in libc, always assume digest is passed to Final. no null allowed. |  tedu | 2014-12-23 | 1 | -66/+55 |
* | as in libc, there's no need to check for calling Init on null context |  tedu | 2014-12-23 | 1 | -7/+1 |
* | use endian.h swap macros instead of home grown versions |  tedu | 2014-12-23 | 1 | -31/+7 |
* | openbsd rcisd |  tedu | 2014-12-20 | 1 | -0/+1 |
* | make the code look more like libc by changing Transform to take the state |  tedu | 2014-12-19 | 1 | -87/+83 |
* | convert bcopy/zero to memcpy. ok deraadt djm |  tedu | 2014-12-19 | 1 | -24/+29 |
* | only unroll on i386 and amd64 (where confirmed to be much faster). |  tedu | 2014-12-18 | 1 | -2/+3 |
* | unroll loops for sha2. quite a bit faster for amd64. |  tedu | 2014-12-17 | 1 | -1/+4 |
* | Sync our kernel AES code to the one shipped in OpenSSL/LibreSSL. |  mikeb | 2014-11-17 | 1 | -198/+99 |
* | Defining the interface in terms of char * means most callers are |  tedu | 2014-11-16 | 6 | -19/+23 |
* | Improve performance of an internal loop by saving up on branching |  mikeb | 2014-11-12 | 1 | -8/+8 |
* | introduce SipHash, designed by Jean-Phillippe Aumasson and Daniel |  dlg | 2014-11-04 | 2 | -0/+265 |
* | pools lock themselves now, we just have to tell them what IPL they |  dlg | 2014-10-23 | 1 | -13/+4 |
* | apply only the bit of r1.69 that should have been committed: |  dlg | 2014-10-23 | 1 | -2/+2 |
* | revert previous. it did more than the commit message said it did. |  dlg | 2014-10-23 | 1 | -5/+14 |
* | make the crypto taskq protect things at IPL_VM instead of IPL_HIGH. |  dlg | 2014-10-22 | 1 | -14/+5 |
* | replace bzeros after allocations with M_ZERO and PR_ZERO as appropriate. |  dlg | 2014-10-20 | 1 | -9/+4 |
* | remove uneeded proc.h includes |  jsg | 2014-09-14 | 2 | -4/+2 |
* | Bye bye /dev/crypto |  mikeb | 2014-08-20 | 1 | -0/+0 |
* | Bye bye /dev/crypto |  mikeb | 2014-08-20 | 3 | -951/+2 |
* | dont rely on mbuf.h to provide pool.h. |  dlg | 2014-08-18 | 1 | -1/+2 |
* | use mallocarray() |  deraadt | 2014-07-13 | 2 | -6/+6 |
* | do not need malloc.h |  deraadt | 2014-07-13 | 1 | -2/+1 |
* | add a size argument to free. will be used soon, but for now default to 0. |  tedu | 2014-07-12 | 4 | -28/+28 |
* | decouple struct uvmexp into a new file, so that uvm_extern.h and sysctl.h |  deraadt | 2014-07-08 | 1 | -3/+1 |
* | fix IPComp interop with linux: switch Z_PARTIAL_FLUSH to Z_FINISH for |  markus | 2014-02-18 | 1 | -20/+15 |
* | - grow the decompression buffer more aggressively if we have |  markus | 2014-02-11 | 1 | -16/+15 |
* | cc_queued is not used for anything atm, remove it; ok jsing, markus |  mikeb | 2014-01-21 | 1 | -17/+1 |
* | Respect CRYPTO_F_NOQUEUE flag when dispatching a crypto operation |  mikeb | 2014-01-21 | 1 | -2/+2 |
* | ansify some function definitions and tidy up this code style wise. this |  brad | 2013-11-18 | 3 | -206/+188 |
* | replace rc4 with ChaCha20 here, too; ok djm, tedu, deraadt |  markus | 2013-11-02 | 1 | -0/+220 |
* | convert crypto work queue to the task_add(9) api; ok dlg |  mikeb | 2013-10-31 | 2 | -17/+18 |
* | Allocate and deallocate memory for encryption contexts within cryptosoft, |  jsing | 2013-08-25 | 3 | -172/+79 |