aboutsummaryrefslogtreecommitdiff
path: root/sys/crypto
Commit message (Expand)AuthorAgeFilesLines
* Fix a bug in the result of manual assembly.Konstantin Belousov2011-03-022-2/+2
* Make private functions static.Rebecca Cran2011-02-211-8/+8
* Remove DEBUG sections.Konstantin Belousov2010-11-271-24/+0
* MFaesni r215427:Konstantin Belousov2010-11-263-9/+31
* Only save FPU context when not executing in the context of the cryptoKonstantin Belousov2010-11-171-8/+22
* Change two missed instances of 'retq' in aeskeys_i386.S to 'retl', whichDimitry Andric2010-10-131-2/+2
* Fix two copy&paste bugs.Pawel Jakub Dawidek2010-09-251-2/+2
* Add support for CRYPTO_AES_XTS.Pawel Jakub Dawidek2010-09-233-24/+151
* Add support for CRD_F_KEY_EXPLICIT flag.Pawel Jakub Dawidek2010-09-231-16/+32
* Simplify code a bit.Pawel Jakub Dawidek2010-09-232-10/+5
* Crypto(4) driver for AESNI.Konstantin Belousov2010-07-237-0/+1464
* Use the fpu_kern_enter() interface to properly separate usermode FPUKonstantin Belousov2010-06-054-3/+34
* Changed to M_NOWAIT when reallocing psc_buf in padlock_sha_update(),VANHULLEBUS Yvan2009-05-271-1/+3
* identify routine takes driver_t *, not device_t *.Warner Losh2009-02-051-1/+1
* Connect padlock(4) to amd64 build for VIA Nano processors.Jung-uk Kim2009-01-122-3/+3
* Avoid 256 integer divisions per rc4_init() call. Replace it with usingAlexander Motin2008-12-161-3/+5
* Fix a potential NULL-pointer dereference in padlock(4).Philip Paeps2008-11-171-1/+5
* Simplify session selection/allocation.Pawel Jakub Dawidek2008-08-091-10/+5
* - Fix freeing session on newsession failure.Pawel Jakub Dawidek2008-08-091-9/+24
* Implify sessions freeing loop.Pawel Jakub Dawidek2008-08-091-2/+1
* We don't have to drop a lock around malloc(M_NOWAIT).Pawel Jakub Dawidek2008-08-091-4/+4
* When freeing session, restore its ID after zeroing memory.Pawel Jakub Dawidek2008-08-091-0/+1
* Sessions in-use are at the end of the queue, so use TAILQ_FOREACH_REVERSE()Pawel Jakub Dawidek2008-08-091-3/+5
* Convert lock that protects sessions list from a mutex to a rwlock.Pawel Jakub Dawidek2008-07-201-16/+16
* Make test00 compilable again.Maxim Sobolev2008-01-152-1/+3
* Commit the change from FAST_IPSEC to IPSEC. The FAST_IPSECGeorge V. Neville-Neil2007-07-031-1/+1
* Integrate the Camellia Block Cipher. For more information see RFC 4132George V. Neville-Neil2007-05-093-0/+1459
* Overhaul driver/subsystem api's:Sam Leffler2007-03-211-74/+68
* Initialize T1 to silent gcc warning.Kevin Lo2006-10-221-1/+1
* Less magic.Pawel Jakub Dawidek2006-09-151-2/+3
* GCC 3.4.6 gets confused on this file and produces bogus warning.Alexander Kabaev2006-08-261-1/+1
* Remove trailing spaces.Pawel Jakub Dawidek2006-07-281-1/+1
* Use existing roundup2() macro.Pawel Jakub Dawidek2006-07-281-1/+1
* Remove redundant check committed by accident.Pawel Jakub Dawidek2006-07-251-2/+0
* Avoid memory allocations when the given address is already 16 bytes aligned.Pawel Jakub Dawidek2006-07-251-6/+51
* Modify PADLOCK_ALIGN() macro, so when the given address is already 16 bytesPawel Jakub Dawidek2006-07-251-1/+1
* Style fixes.Pawel Jakub Dawidek2006-07-254-10/+10
* Implement support for HMAC/SHA1 and HMAC/SHA256 acceleration found inPawel Jakub Dawidek2006-07-224-335/+766
* Correct few bzero()s.Pawel Jakub Dawidek2006-07-221-3/+3
* Set ses_ictx and ses_octx to NULL after freeing them, so we won't freePawel Jakub Dawidek2006-07-221-0/+2
* Use the already stored VIA RNG probe informationMichael Reifenberger2006-07-131-16/+5
* Fix gratuitous compiler warning.Pawel Jakub Dawidek2006-06-081-1/+2
* - Pretend to accelerate various HMAC algorithms, so padlock(4) can be usedPawel Jakub Dawidek2006-06-051-91/+266
* padlock(4) doesn't support explicitly provided keys yet.Pawel Jakub Dawidek2006-04-201-0/+4
* On padlock initialization, allocate memory with M_WAITOK.Pawel Jakub Dawidek2006-04-121-5/+1
* Add VIA/ACE "PadLock" support as a crypto(9) driver.Pawel Jakub Dawidek2005-08-181-0/+504
* Assert proper key size also in userland by defining KASSERT in !_KERNEL case.Pawel Jakub Dawidek2005-08-171-2/+2
* Unbreak the world build (in sbin/gbde). This file is used by bothColin Percival2005-08-171-0/+2
* Check key size for rijndael, as invalid key size can lead to kernel panic.Pawel Jakub Dawidek2005-08-161-0/+2
* gbde(8) is also rejndael user.Hajimu UMEMOTO2005-03-111-2/+0