summaryrefslogtreecommitdiffstats
path: root/src/crypto
Commit message (Collapse)AuthorAgeFilesLines
* [crypto] Rename <gpxe/bitops.h> to <gpxe/rotate.h>Michael Brown2008-10-011-1/+1
|
* [crypto] Remove spurious #include "config.h"Michael Brown2008-09-251-2/+0Star
|
* [iSCSI] Add support for mutual CHAPMichael Brown2008-08-111-8/+8
| | | | Allow initiator to verify target authentication using CHAP.
* Fix compiler warnings that appear only on OpenBSD.Michael Brown2007-12-062-4/+4
|
* use malloc attributeHolger Lubitz2007-08-201-1/+1
|
* use malloc attributeHolger Lubitz2007-08-201-1/+1
|
* Inhibit compiler warningMichael Brown2007-07-301-1/+1
|
* Upgrade AXTLS import to version 1.1.5-aMichael Brown2007-07-307-62/+906
|
* Added HMAC code from TLS projectMichael Brown2007-07-291-0/+120
|
* make md5_steps staticHolger Lubitz2007-07-271-1/+1
|
* disable AES_convert_key by #if 0'ing it out (suggested by mcb30)Holger Lubitz2007-07-271-0/+2
|
* disable AES_convert_key by #if 0'ing it out (suggested by mcb30)Holger Lubitz2007-07-271-0/+4
|
* Add per-file error identifiersMichael Brown2007-07-242-0/+25
|
* Warnings purge: src/{crypto,hci,net}Marty Connor2007-07-031-1/+1
|
* Conflicts with native asn1.cMichael Brown2007-06-081-867/+0Star
|
* Trivial ASN.1 decoding functions.Michael Brown2007-04-211-0/+159
|
* Required for public key extractionMichael Brown2007-02-011-0/+867
|
* SHA1_DIGEST_SIZE also available as a static constantMichael Brown2007-02-011-1/+1
|
* Make context sizes available for statically-allocated structuresMichael Brown2007-02-012-12/+2Star
|
* Vanilla copies from axtlsMichael Brown2007-02-012-0/+1749
|
* Quick hacks to get it workingMichael Brown2007-02-011-0/+7
|
* Add dummy setiv methodMichael Brown2007-02-011-1/+6
|
* Original axtls RSA codeMichael Brown2007-01-311-0/+331
|
* Added wrapper for AXTLS AES codeMichael Brown2007-01-311-0/+53
|
* Add wrapper around axtls' sha1 codeMichael Brown2007-01-311-0/+26
|
* Adding missing includeMichael Brown2007-01-311-0/+1
|
* We need this, I thinkMichael Brown2007-01-311-0/+1
|
* Force inliningMichael Brown2007-01-311-3/+5
|
* ...but not when it's being used as a digest algorithm...Michael Brown2007-01-311-2/+4
|
* The null crypto algorithm should at least copy data...Michael Brown2007-01-311-6/+7
|
* Add null crypto algorithmMichael Brown2007-01-311-0/+61
|
* Added blocksize for the benefit of HMAC codeMichael Brown2007-01-301-1/+1
|
* Generalise digest_algorithm to crypto_algorithm.Michael Brown2007-01-302-14/+16
|
* Should be correct for building RSAMichael Brown2007-01-281-1/+1
|
* Allow MatrixSSL code to compile inside gPXEMichael Brown2007-01-263-0/+1266
|
* Add aes.c and required headers from axtls treeMichael Brown2007-01-264-0/+969
|
* Enable the axtls code to at least build within gPXEMichael Brown2007-01-261-0/+62
|
* #if 0 out for nowMichael Brown2007-01-261-0/+3
|
* Use stdlib.h for malloc() instead of malloc.h.Michael Brown2006-12-201-1/+0Star
|
* Added "name" field to digest algorithmsMichael Brown2006-11-211-0/+1
|
* Added debug statements.Michael Brown2006-11-211-1/+16
| | | | | | Don't crash when called on an uninitialised chap structure; this allows us to avoid extra checks within iscsi.c to make sure that we receive the CHAP_XXX keys in a sensible order.
* Reduce from 157 to 123 bytesMichael Brown2006-11-211-15/+15
|
* Added generic CHAP layer, independent of iSCSIMichael Brown2006-11-212-10/+127
|
* Made it temporarily possible to call MD5 routines directly from externalMichael Brown2006-11-151-21/+12Star
| | | | | | code, rather than going through the digest layer. Removed a spurious line of constants.
* We don't actually have a stdio.h header file. Our printf() functions areMichael Brown2006-09-272-2/+0Star
| | | | | | | | defined in vsprintf.h. (This may change, since vsprintf.h is a non-standard name, but for now it's the one to use.) There should be no need to include vsprintf.h just for DBG() statements, since include/compiler.h forces it in for a debug build anyway.
* added stdio.h to includes for DBG compilationMarty Connor2006-09-271-0/+1
|
* Restored the le32_to_cpus() and cpu_to_le32s() callsMichael Brown2006-09-111-2/+6
|
* Tidied up.Michael Brown2006-09-111-105/+25Star
|
* Reduced size from 2087 bytes to 1056 bytesMichael Brown2006-09-111-4/+100
|
* Taken from Linux's md5.c. This implementation is not veryMichael Brown2006-09-111-0/+222
| | | | | | size-efficient, and will probably be rewritten. The md5.c from MatrixSSL is too ugly to consider importing.