summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/engine/eng_padlock.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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