summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/des (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove the _shadow_ indirection, which is unnecessary in a world withoutjsing2014-05-243-7/+4
| | | | | | OPENSSL_EXPORT_VAR_AS_FUNCTION. ok miod@
* Expand the OPENSSL_.*GLOBAL.* macros and stop including e_os2.h.jsing2014-05-243-8/+7
| | | | ok miod@ beck@
* Explicitly include <openssl/openssl.conf>. des.h still needs e_os2.h (atjsing2014-05-241-2/+3
| | | | least for a little while longer...)
* Almost nothing actually needs to include <openssl/e_os2.h>, however byjsing2014-05-241-2/+3
| | | | | | | including it they get <openssl/opensslconf.h>. So instead of pulling in <openssl/e_os2.h>, just pull in <openssl/opensslconf.h>. "go ahead" miod@
* Expand the OPENSSL_{GLOBAL,EXPORT,IMPORT,EXTERN} macros - this rids thejsing2014-05-223-7/+5
| | | | | | libssl tree from all uses of these defines. ok miod@
* Remove WIN32, WIN64 and MINGW32 tentacles.miod2014-04-282-12/+0
| | | | | | | | 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@
* Unifdef -U OPENSSL_BUILD_SHLIBCRYPTO, since all it causes under Unix is tomiod2014-04-273-20/+1
| | | | redefine OPENSSL_EXTERN from `extern' to `extern'.
* unifdef MSDOSgiovanni2014-04-241-12/+1
| | | | ok miod@
* Unifdef -UPEDANTIC. ok beck@ tedu@miod2014-04-231-1/+1
|
* Remove files which look like actual code compiled in libcrypto, but isn't.miod2014-04-221-99/+0
| | | | One even says (in comments): HAS BUGS! DON'T USE
* Remove meat which either duplicates code found in apps/, or is only of valuemiod2014-04-225-1157/+0
| | | | for 20th century historians, and can be put in the Attic.
* clean up files we don't needtedu2014-04-2119-1352/+0
|
* 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@
* tone down some XXXXX to not appear in greptedu2014-04-181-1/+1
|
* Do not ask the user to pass either -DB_ENDIAN or -DL_ENDIAN to the compiler,miod2014-04-181-5/+6
| | | | | | | but rather figure out the endianness from <machine/endian.h> automagically; help from guenther@ ok jca@ guenther@ beck@ and the rest of the `Buena SSL rampage club'
* Put the final pieces from e_os.h in the required places, and remove it.deraadt2014-04-182-2/+0
| | | | | "dance on it's grave" says beck ok guenther beck
* Get rid of MS Visual C compiler and Intel C compiler specific defines.miod2014-04-171-3/+1
|
* Change library to use intrinsic memory allocation functions instead ofbeck2014-04-172-4/+4
| | | | | | | | OPENSSL_foo wrappers. This changes: OPENSSL_malloc->malloc OPENSSL_free->free OPENSSL_relloc->realloc OPENSSL_freeFunc->free
* OPENSSL_DECLARE_EXIT serves no purpose.deraadt2014-04-171-1/+0
|
* unistd.h is always in the same place; no need to #include the result ofderaadt2014-04-173-11/+3
| | | | a maze of conditional #define's
* Remove _CRAY references. Note that this pleads for the use of <stdint.h>miod2014-04-161-14/+0
| | | | | fixed-width types instead of choosing int or long depending upon what we think the architecture support.
* Remove DES_read_password and DES_read_2passwords which are `modern' flavoursmiod2014-04-162-144/+0
| | | | | | of des_old.h routines, acting as wrappers about the OpenSSL UI API. Nothing should use these functions directly. Riding the recent libcrypto major bump (in a `des' car).
* dead filetedu2014-04-161-521/+0
|
* you do not want to do the things this program doestedu2014-04-161-932/+0
|
* we don't use these files for buildingtedu2014-04-151-108/+0
|
* 12 years ago, old_des.h was used to provide compatibility with libdes.tedu2014-04-155-812/+3
| | | | | | | | | | | | The man page says "Compatibility des_ functions are provided for a short while" and indeed even the original commit message says "The compatibility functions will be removed in some future release, at the latest in version 1.0." So here we are, a short while later. Now I've only been an OpenBSD developer for 11 years, one year less than this header has existed, but in that brief time, I've learned a thing or two about deleting obsolete code. It doesn't delete itself. And worse, people will continue using it until you force them onto a better path.
* imake died in a fire a long time agotedu2014-04-151-35/+0
|
* remove FIPS mode support. people who require FIPS can buy something thattedu2014-04-152-10/+0
| | | | | meets their needs, but dumping it in here only penalizes the rest of us. ok beck deraadt
* Moved to regress/lib/libcrypto.miod2014-04-151-952/+0
|
* Send the rotIBM stream cipher (ebcdic) to Valhalla to party for eternitybeck2014-04-151-46/+0
| | | | | with the bearded ones... some API's that nobody should be using will dissapear with this commit.
* 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 pentium specific benchmark codejsg2014-04-152-134/+0
| | | | ok miod@
* unifdef -U OPENBSD_DEV_CRYPTO and OPENSSL_OPENBSD_DEV_CRYPTO. This code was themiod2014-04-141-4/+0
| | | | | | early attempt at getting kernel-assisted crypto(4) used by libcrypto, before the engine API existed, and has been #if 0'd out for ages anyway. No API/ABI change.
* remove auto-generated dependencies from the old unused build system, soderaadt2014-04-141-171/+0
| | | | | that it is easier to find code pieces. They are getting in the way. ok miod
* Cope with the removal of openssl/symhacks.hderaadt2014-04-131-2/+0
|
* Merge conflicts; remove MacOS, Netware, OS/2, VMS and Windows build machinery.miod2014-04-135-1015/+7
|
* resolve conflictsdjm2012-10-132-0/+12
|
* This commit was generated by cvs2git to track changes on a CVS vendordjm2012-10-131-2/+3
|\ | | | | branch.
| * import OpenSSL-1.0.1cdjm2012-10-131-2/+3
| |
* | resolve conflicts, fix local changesdjm2010-10-0116-767/+356
| |
* | This commit was generated by cvs2git to track changes on a CVS vendordjm2010-10-011-2/+4
|\ \ | | | | | | branch.
| * | import OpenSSL-1.0.0adjm2010-10-0111-75/+320
| | |
* | | This commit was generated by cvs2git to track changes on a CVS vendordjm2010-10-011-37/+18
|\ \ \ | | |/ | |/| branch.
| * | import OpenSSL-1.0.0adjm2010-10-013-71/+54
| | |
| * | import of OpenSSL 0.9.8kdjm2009-04-061-1/+1
| | |
* | | Oracle has re-licensed sunrpc under a three-clause BSD license.millert2010-09-011-27/+29
| | | | | | | | | | | | Update our sources appropriately. OK deraadt@ jsg@
* | | s/Mhz/MHz/, MHz is a multiple of the SI unit hertz (whose symbol is Hz).sobrado2009-10-311-2/+2
| | |
* | | This commit was generated by cvs2git to track changes on a CVS vendordjm2009-04-061-114/+231
|\ \ \ | | |/ | |/| branch.
| * | import of OpenSSL 0.9.8kdjm2009-04-061-114/+231
| | |
| * | import openssl-0.9.8jdjm2009-01-095-47/+21
| | |