summaryrefslogtreecommitdiff
path: root/crypto/des.c
AgeCommit message (Collapse)Author
2004-04-26[CRYPTO]: Add module aliases for des and sha512.Michal Ludvig
2003-08-17[IPSEC]: Fix oops using null ciper in CBC mode.Mikael Ylikoski
2003-03-20[CRYPTO]: Include linux/errno.h as appropriate.David S. Miller
2003-01-13[CRYPTO] remove superfluous goto from des module init exception pathJames Morris
2002-12-31Fix up numerous '`xxxxx' is not at beginning of declaration' style warnings.Dave Jones
2002-11-06[CRYPTO]: Add blowfish algorithm.James Morris
2002-10-29[CRYPTO]: Uninline some functions to save some bloat.James Morris
2002-10-29[CRYPTO]: Cleanups based upon suggestions by Jeff Garzik.James Morris
- Changed unsigned to unsigned int in algos. - Consistent use of u32 for flags throughout api. - Use of unsigned int rather than int for counting things which must be positive, also replaced size_ts to keep code simpler and lessen bloat on some archs. - got rid of some unneeded returns. - const correctness.
2002-10-28[CRYPTO]: Cleanups and more consistency checks.James Morris
- Removed local_bh_disable() from kmap wrapper, not needed now with two atomic kmaps. - Nuked atomic flag, use in_softirq() instead. - Converted crypto_kmap() and crypto_yield() to check in_softirq(). - Check CRYPTO_MAX_CIPHER_BLOCK_SIZE during alg init. - Try to initialize as much at compile time as possible (feedback from Christoph Hellwig). - Clean up list handling a bit (feedback from Christoph Hellwig).
2002-10-27[CRYPTO]: Algorithm lookup API change plus bug fixes.James Morris
- API change: implemented simplest version of algorithm lookup by name (feedback from Rusty Russell and Herbert Valerio Riedel). - Now need to add the following line to to /etc/modules.conf for dynamic module loading: alias des3_ede des
2002-10-24[CRYPTO]: Use try_inc_mod_count and semaphore for alg list.James Morris
2002-10-24[CRYPTO]: Cleanups based upon feedback from Rusty and jgarzikJames Morris
- s/__u/u/ - s/char/u8/ - Fixed bug in cipher.c, page remapped was off by one block
2002-10-23[CRYPTO]: Add in 3des implementation.James Morris
2002-10-23[CRYPTO]: Add initial crypto api subsystem.James Morris