aboutsummaryrefslogtreecommitdiff
path: root/sys/opencrypto
Commit message (Expand)AuthorAgeFilesLines
* MFC 218794, 219026:VANHULLEBUS Yvan2011-04-281-1/+2
* Merge userspace DTrace support from head to stable/8:Robert Watson2011-02-281-4/+4
* MFC: r215295Marius Strobl2010-11-211-2/+2
* Merge the kern_fpu_enter/kern_fpu_leave KPI and followup fixes for theKonstantin Belousov2010-11-191-0/+8
* MFC r213065,r213068:Pawel Jakub Dawidek2010-10-235-16/+204
* MFC r210631:Konstantin Belousov2010-08-191-7/+266
* MFC r201898:Bjoern A. Zeeb2010-01-171-1/+18
* MFC r199906:Bjoern A. Zeeb2009-12-051-1/+1
* MFC r199904:Bjoern A. Zeeb2009-12-051-0/+6
* MFC r199895:Bjoern A. Zeeb2009-12-052-60/+73
* MFC r199887:Bjoern A. Zeeb2009-12-051-6/+10
* MFC r199885:Bjoern A. Zeeb2009-12-051-7/+61
* MFC r199884:Bjoern A. Zeeb2009-12-051-0/+4
* Fix cryptodev UIO creation.Rafal Jaworowski2009-05-231-1/+3
* Fix return type for detach routine (should be int)Warner Losh2009-02-051-2/+3
* While OpenBSD's crypto/ framework has sha1 and md5 implementations thatBjoern A. Zeeb2009-01-281-1/+6
* Don't hang if encrypting/decrypting using struct iovecs where one of theDoug Rabson2008-10-301-0/+4
* Fix a number of style issues in the MALLOC / FREE commit. I've tried toDag-Erling Smørgrav2008-10-231-7/+7
* Retire the MALLOC and FREE macros. They are an abomination unto style(9).Dag-Erling Smørgrav2008-10-234-45/+42
* Make ftruncate a 'struct file' operation rather than a vnode operation.John Baldwin2008-01-071-0/+14
* Remove explicit locking of struct file.Jeff Roberson2007-12-301-6/+1
* Rename the kthread_xxx (e.g. kthread_create()) callsJulian Elischer2007-10-201-3/+3
* Deny attempt to malloc unbounded amount of the memory.Konstantin Belousov2007-10-081-3/+6
* Quiet warnings. These do not appear to be actually used uninitialized,Peter Wemm2007-07-051-1/+1
* Integrate the Camellia Block Cipher. For more information see RFC 4132George V. Neville-Neil2007-05-095-1/+66
* Replace custom file descriptor array sleep lock constructed using a mutexRobert Watson2007-04-041-1/+3
* add missing file from last commit that overhauls crypto/driver api'sSam Leffler2007-03-211-0/+55
* Overhaul driver/subsystem api's:Sam Leffler2007-03-216-491/+762
* When DIAGNOSTIC is defined, verify if we don't free crypto requests fromPawel Jakub Dawidek2006-06-061-0/+21
* Use newly added functions to simplify the code.Pawel Jakub Dawidek2006-06-041-82/+54
* - Replace COPYDATA() and COPYBACK() macros with crypto_copydata() andPawel Jakub Dawidek2006-06-042-27/+47
* Prefer hardware crypto over software crypto.Pawel Jakub Dawidek2006-06-041-38/+74
* Use newly added defines instead of magic values.Pawel Jakub Dawidek2006-06-041-16/+16
* Move COPYDATA() and COPYBACK() macros to cryptodev.h, they will be usedPawel Jakub Dawidek2006-06-042-27/+27
* - Remove HMAC_BLOCK_LEN, it serves no purpose.Pawel Jakub Dawidek2006-06-041-1/+0
* - Use define of an algorithm with the biggest block length to describePawel Jakub Dawidek2006-06-041-3/+1
* Rename HMAC_BLOCK_MAXLEN to HMAC_MAX_BLOCK_LEN to be consistent withPawel Jakub Dawidek2006-06-042-6/+6
* Rename AALG_MAX_RESULT_LEN to HASH_MAX_LEN to look more constent withPawel Jakub Dawidek2006-06-042-4/+4
* - Add defines with hash length for each hash algorithm.Pawel Jakub Dawidek2006-06-041-4/+24
* Kill an unused argument.Pawel Jakub Dawidek2006-06-041-5/+5
* Remove (now unused) crp_mac field.Pawel Jakub Dawidek2006-05-221-1/+0
* Fix usage of HMAC algorithms via /dev/crypto.Pawel Jakub Dawidek2006-05-221-10/+10
* Improve the code responsible for waking up the crypto_proc thread.Pawel Jakub Dawidek2006-05-221-14/+11
* Don't wakeup the crypto_ret_proc thread if it is running already.Pawel Jakub Dawidek2006-05-221-2/+3
* Don't set cc_kqblocked twice and don't increment cryptostats.cs_kblocksPawel Jakub Dawidek2006-05-221-2/+0
* Document how we synchronize access to the fields in the cryptocapPawel Jakub Dawidek2006-05-221-6/+13
* We must synchronize access to cc_qblocked, because there could be a racePawel Jakub Dawidek2006-05-221-17/+4
* Silent Coverity Prevent report by asserting that cap != NULL.Pawel Jakub Dawidek2006-05-181-2/+4
* - Fix a very old bug in HMAC/SHA{384,512}. When HMAC is using SHA384Pawel Jakub Dawidek2006-05-176-132/+194
* - Make opencrypto more SMP friendly by dropping the queue lock aroundPawel Jakub Dawidek2006-05-172-145/+140