| Commit message (Expand) | Author | Age | Files | Lines |
| * | OpenCrypto: Convert sessions to opaque handles instead of integers | Conrad Meyer | 2018-07-18 | 2 | -107/+18 |
| * | Remove "HMAC" from <HASH>_HMAC_BLOCK_LEN macro names | Conrad Meyer | 2018-07-09 | 1 | -4/+4 |
| * | Remove unused error return from API that cannot fail | Conrad Meyer | 2018-02-23 | 3 | -16/+7 |
| * | Revert r327340, as the workaround for rep prefixes followed by .byte | Dimitry Andric | 2018-01-17 | 1 | -1/+1 |
| * | Work around a clang 6.0.0 issue with rep prefixes followed by .byte | Dimitry Andric | 2017-12-29 | 1 | -1/+1 |
| * | opencrypto: Use C99 initializers for auth_hash instances | Conrad Meyer | 2017-09-26 | 1 | -12/+18 |
| * | opencrypto: Loosen restriction on HMAC key sizes | Conrad Meyer | 2017-09-26 | 1 | -2/+4 |
| * | Remove pc98 support completely. | Yoshihiro Takahashi | 2017-01-28 | 2 | -3/+3 |
| * | Add some new modes to OpenCrypto. These modes are AES-ICM (can be used | John-Mark Gurney | 2014-12-12 | 1 | -6/+6 |
| * | Add FPU_KERN_KTHR flag to fpu_kern_enter(9), which avoids saving FPU | Konstantin Belousov | 2014-06-23 | 3 | -33/+12 |
| * | Add support for the extended FPU states on amd64, both for native | Konstantin Belousov | 2012-01-21 | 4 | -7/+18 |
| * | MFaesni r215427: | Konstantin Belousov | 2010-11-26 | 3 | -9/+31 |
| * | Use the fpu_kern_enter() interface to properly separate usermode FPU | Konstantin Belousov | 2010-06-05 | 4 | -3/+34 |
| * | Changed to M_NOWAIT when reallocing psc_buf in padlock_sha_update(), | VANHULLEBUS Yvan | 2009-05-27 | 1 | -1/+3 |
| * | identify routine takes driver_t *, not device_t *. | Warner Losh | 2009-02-05 | 1 | -1/+1 |
| * | Connect padlock(4) to amd64 build for VIA Nano processors. | Jung-uk Kim | 2009-01-12 | 2 | -3/+3 |
| * | Fix a potential NULL-pointer dereference in padlock(4). | Philip Paeps | 2008-11-17 | 1 | -1/+5 |
| * | Simplify session selection/allocation. | Pawel Jakub Dawidek | 2008-08-09 | 1 | -10/+5 |
| * | - Fix freeing session on newsession failure. | Pawel Jakub Dawidek | 2008-08-09 | 1 | -9/+24 |
| * | Implify sessions freeing loop. | Pawel Jakub Dawidek | 2008-08-09 | 1 | -2/+1 |
| * | We don't have to drop a lock around malloc(M_NOWAIT). | Pawel Jakub Dawidek | 2008-08-09 | 1 | -4/+4 |
| * | When freeing session, restore its ID after zeroing memory. | Pawel Jakub Dawidek | 2008-08-09 | 1 | -0/+1 |
| * | Sessions in-use are at the end of the queue, so use TAILQ_FOREACH_REVERSE() | Pawel Jakub Dawidek | 2008-08-09 | 1 | -3/+5 |
| * | Convert lock that protects sessions list from a mutex to a rwlock. | Pawel Jakub Dawidek | 2008-07-20 | 1 | -16/+16 |
| * | Commit the change from FAST_IPSEC to IPSEC. The FAST_IPSEC | George V. Neville-Neil | 2007-07-03 | 1 | -1/+1 |
| * | Overhaul driver/subsystem api's: | Sam Leffler | 2007-03-21 | 1 | -74/+68 |
| * | Less magic. | Pawel Jakub Dawidek | 2006-09-15 | 1 | -2/+3 |
| * | Remove trailing spaces. | Pawel Jakub Dawidek | 2006-07-28 | 1 | -1/+1 |
| * | Use existing roundup2() macro. | Pawel Jakub Dawidek | 2006-07-28 | 1 | -1/+1 |
| * | Remove redundant check committed by accident. | Pawel Jakub Dawidek | 2006-07-25 | 1 | -2/+0 |
| * | Avoid memory allocations when the given address is already 16 bytes aligned. | Pawel Jakub Dawidek | 2006-07-25 | 1 | -6/+51 |
| * | Modify PADLOCK_ALIGN() macro, so when the given address is already 16 bytes | Pawel Jakub Dawidek | 2006-07-25 | 1 | -1/+1 |
| * | Style fixes. | Pawel Jakub Dawidek | 2006-07-25 | 4 | -10/+10 |
| * | Implement support for HMAC/SHA1 and HMAC/SHA256 acceleration found in | Pawel Jakub Dawidek | 2006-07-22 | 4 | -333/+764 |
| * | Correct few bzero()s. | Pawel Jakub Dawidek | 2006-07-22 | 1 | -3/+3 |
| * | Set ses_ictx and ses_octx to NULL after freeing them, so we won't free | Pawel Jakub Dawidek | 2006-07-22 | 1 | -0/+2 |
| * | Use the already stored VIA RNG probe information | Michael Reifenberger | 2006-07-13 | 1 | -16/+5 |
| * | Fix gratuitous compiler warning. | Pawel Jakub Dawidek | 2006-06-08 | 1 | -1/+2 |
| * | - Pretend to accelerate various HMAC algorithms, so padlock(4) can be used | Pawel Jakub Dawidek | 2006-06-05 | 1 | -90/+265 |
| * | padlock(4) doesn't support explicitly provided keys yet. | Pawel Jakub Dawidek | 2006-04-20 | 1 | -0/+4 |
| * | On padlock initialization, allocate memory with M_WAITOK. | Pawel Jakub Dawidek | 2006-04-12 | 1 | -5/+1 |
| * | Add VIA/ACE "PadLock" support as a crypto(9) driver. | Pawel Jakub Dawidek | 2005-08-18 | 1 | -0/+504 |