summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/engine/eng_padlock.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* None of these need to include <openssl/rand.h>jsing2014-10-181-2/+1
|
* Explicitly include <openssl/opensslconf.h> in every file that referencesjsing2014-07-101-2/+2
| | | | | | | | | an OPENSSL_NO_* define. This avoids relying on something else pulling it in for us, plus it fixes several cases where the #ifndef OPENSSL_NO_XYZ is never going to do anything, since OPENSSL_NO_XYZ will never defined, due to the fact that opensslconf.h has not been included. This also includes some miscellaneous sorting/tidying of headers.
* KNF.jsing2014-06-221-235/+261
|
* tags as requested by miod and teduderaadt2014-06-121-0/+1
|
* Expand the OPENSSL_{GLOBAL,EXPORT,IMPORT,EXTERN} macros - this rids thejsing2014-05-221-2/+2
| | | | | | libssl tree from all uses of these defines. ok miod@
* Remove WIN32, WIN64 and MINGW32 tentacles.miod2014-04-281-6/+1
| | | | | | | | Also check for _LP64 rather than __arch64__ (the former being more reliable than __LP64__ or __arch64__) to tell 64-bit int platforms apart from 32-bit int platforms. Loosely based upon a diff from Martijn van Duren on tech@
* Use C99 initializers for the various FOO_METHOD structs. More readable, andmiod2014-04-271-6/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | avoid unreadable/unmaintainable constructs like that: const EVP_PKEY_ASN1_METHOD cmac_asn1_meth = { EVP_PKEY_CMAC, EVP_PKEY_CMAC, 0, "CMAC", "OpenSSL CMAC method", 0,0,0,0, 0,0,0, cmac_size, 0, 0,0,0,0,0,0,0, cmac_key_free, 0, 0,0 }; ok matthew@ deraadt@
* Restore beck's rev 1.3: snprintf() was reviewedguenther2014-04-201-1/+1
|
* We'll interpret a (void) cast on snprintf() to mean it's been verified thatguenther2014-04-191-1/+1
| | | | | | truncation is either desirable, not an issue, or is detected and handled later ok deraadt@
* Get rid of MS Visual C compiler and Intel C compiler specific defines.miod2014-04-171-132/+1
|
* Part 1 of eliminating BIO_snprintf(). This fixes mechanical conversionsbeck2014-04-151-1/+1
| | | | | where the return value is ignored changing to (void) snprintf. ok deraadt@
* Remove eng_cryptodev.c (merged into old-name hw_cryptodev.c); movemiod2014-04-141-9/+29
| | | | | | | undo the move of crypto/engines/eng_padlock to engines/e_padlock. Requested by reyk@. Note that eng_padlock is not compiled in currently.
* import openssl-0.9.8jdjm2009-01-091-2/+2
|
* import of OpenSSL 0.9.8hdjm2008-09-061-0/+1219