summaryrefslogtreecommitdiffstats
path: root/crypto/des/Makefile.ssl (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Blow away Makefile.ssl.Ben Laurie2005-03-301-296/+0
|
* This patch was "ignited" by OpenBSD 3>=4 support. They've switched to ELFAndy Polyakov2005-02-061-7/+7
| | | | | and GNU binutils, but kept BSD make... And I took the opportunity to unify other targets to this common least denominator...
* Change libeay.num so it's synchronised with additions in 0.9.7-stable.Richard Levitte2004-12-131-2/+3
| | | | make update
* Don't use $(EXHEADER) directly in for loops, as most shells will breakRichard Levitte2004-11-031-1/+1
| | | | | | if $(EXHEADER) is empty. Notified by many, solution suggested by Carson Gaspar <carson@taltos.org>
* Proper support for OpenBSD-i386 shared build, including assember modules!Andy Polyakov2004-08-291-5/+6
| | | | "Proper" means "compiles and passes test." Versioning is broken (I think).
* OpenBSD fix-up for new a.out targets. OpenBSD .s.o rule is busted...Andy Polyakov2004-08-011-26/+5
|
* Clean-up GAS targets: get rid of "cpp" stuff and replace it with "purified"Andy Polyakov2004-08-011-5/+15
| | | | | | | | COFF and a.out targets [similar to ELF targets]. You might notice some rudementary support for shared mingw builds under cygwin. It works (it produces cryptoeay32.dll and ssleay32.dll with everything exported by name), but it's primarily for testing/debugging purposes, at least for now...
* After the latest round of header-hacking, regenerate the dependencies inGeoff Thorpe2004-05-171-114/+91
| | | | | the Makefiles. NB: this commit is probably going to generate a huge posting and it is highly uninteresting to read.
* make updateGeoff Thorpe2004-04-191-78/+87
|
* make updateRichard Levitte2004-01-281-7/+7
|
* Use sh explicitely to run point.shRichard Levitte2003-12-271-1/+1
| | | | This is part of a large change submitted by Markus Friedl <markus@openbsd.org>
* Provide ASFLAGS in the subdirectories handling assembler code.Lutz Jänicke2003-11-161-0/+1
| | | | | | Submitted by: Tim Rice <tim@multitalents.net> PR: #735, #765
* Make sure int SSL_COMP_add_compression_method() checks if a certainRichard Levitte2003-10-061-6/+7
| | | | | | | | | | | | | | | | | | | | compression identity is already present among the registered compression methods, and if so, reject the addition request. Declare SSL_COMP_get_compression_method() so it can be used properly. Change ssltest.c so it checks what compression methods are available and enumerates them. As a side-effect, built-in compression methods will be automagically loaded that way. Additionally, change the identities for ZLIB and RLE to be conformant to draft-ietf-tls-compression-05.txt. Finally, make update. Next on my list: have the built-in compression methods added "automatically" instead of requiring that the author call SSL_COMP_add_compression_method() or SSL_COMP_get_compression_methods().
* Redundant now as it's moved to ./Makefile.org.Andy Polyakov2003-01-031-8/+0
|
* Unified targets for ELF assembler modules. Tested on Linux, Solaris andAndy Polyakov2003-01-031-25/+6
| | | | FreeBSD. Goal is to extend support even to SCO5, UnixWare/OpenUnix...
* Complete integration of SPARC assembler DES implementation. Tested on SolarisAndy Polyakov2003-01-031-0/+11
| | | | only. I'll keep my eyes open for Linux and OpenBSD targets.
* Fix for RT#405, Solaris refuses to invoke preprocessor if egrep returns 1.Andy Polyakov2002-12-181-4/+4
| | | | | Linux for example doesn't exhibit this behaviour, but I add "exit 0" to all potentially affected rules, just to be on the safe side.
* IA-32 assembler modules (primarily DES) PIC-ification. Idea is to keepAndy Polyakov2002-12-131-4/+12
| | | | shared libraries shared.
* Use double dashes so makedepend doesn't misunderstand the flags weRichard Levitte2002-10-091-1/+1
| | | | | | | give it. For 0.9.7 and up, that means util/domd needs to remove those double dashes from the argument list when gcc is used to find the dependencies.
* make updateRichard Levitte2002-08-011-1/+2
|
* Pass CFLAG to dependency makers, so non-standard system include paths areRichard Levitte2002-06-271-1/+1
| | | | | handled properly. Part of PR 75
* Making a softlink from crypto/des/asm/perlasm to crypto/perlasm isn'tRichard Levitte2002-06-131-1/+0
| | | | strictly necessary, so let's not do that.
* make update (libeay.num has been edited to match 0.9.7-stable)Richard Levitte2002-04-061-0/+8
|
* Add the mapping of des_random_seed() for 0.9.6 compatibility.Richard Levitte2002-03-261-2/+3
| | | | | Make sure DES_cblock is defined at all times (meaning one shouldn't include openssl/des_old.h directly any more).
* 'make update'Richard Levitte2002-02-051-68/+153
|
* With the changed des_old API, let's complete the work by renaming theRichard Levitte2002-02-051-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | functions in ui_compat. This gave reason to rework that part more thoroughly, so here are the changes made: 1. Add DES_read_password() and DES_read_2passwords() with the same functionality as the corresponding old des_ functions, as a convenience to the users. 2. Add UI_UTIL_read_pw_string() and UI_UTIL_read_pw() with the functionality from des_read_pw_string() and des_read_pw(), again as a concenience to the users. 3. Rename des_read_password(), des_read_2passwords(), des_read_pw_string() and des_read_pw() by changing des_ to _ossl_old_des_, and add the usual mapping macros. 4. Move the implementation of des_read_password() and des_read_2passwords() to the des directory, since they are tightly tied to DES anyway. This change was inspired by a patch from Assar Westerlund <assar@sics.se>: There are some functions that didn't get the kick-away-old-des-and- replace-des-with-DES action. Here's a patch that adds DES_ and des_ (in des_old.h) versions of des_read_pw_string et al. This patch includes some of the first des_old.h semi-colon macro fixes that I've already sent.
* make updateRichard Levitte2002-01-241-49/+70
| | | | | libeay.num got tweaked so the old des symbols would retain their positions.
* make updateRichard Levitte2001-11-151-0/+1
| | | | perl util/mkerr.pl -recurse -write -rebuild
* Remove DES_random_seed() but retain des_random_seed() for now. ChangeRichard Levitte2001-10-251-0/+3
| | | | the docs to reflect this change and correct libeay.num.
* A C file is a C file is a C file!Richard Levitte2001-10-241-1/+1
|
* Due to an increasing number of clashes between modern OpenSSL andRichard Levitte2001-10-241-3/+3
| | | | | | | | | | | | libdes (which is still used out there) or other des implementations, the OpenSSL DES functions are renamed to begin with DES_ instead of des_. Compatibility routines are provided and declared by including openssl/des_old.h. Those declarations are the same as were in des.h when the OpenSSL project started, which is exactly how libdes looked at that time, and hopefully still looks today. The compatibility functions will be removed in some future release, at the latest in version 1.0.
* 'make update'Richard Levitte2001-10-041-5/+6
|
* "make update".Geoff Thorpe2001-09-251-3/+3
|
* Add first cut symmetric crypto support.Ben Laurie2001-08-181-2/+1
|
* Start to reduce some of the header bloat.Ben Laurie2001-08-051-1/+2
|
* make updateRichard Levitte2001-07-311-20/+23
|
* Make EVPs allocate context memory, thus making them extensible. RationaliseBen Laurie2001-07-301-23/+20
| | | | | | | | | DES's keyschedules. I know these two should be separate, and I'll back out the DES changes if they are deemed to be an error. Note that there is a memory leak lurking in SSL somewhere in this version.
* make updateRichard Levitte2001-05-071-15/+2
|
* Add a general user interface API. This is designed to replace thingsRichard Levitte2001-05-071-4/+7
| | | | | | | like des_read_password and friends (backward compatibility functions using this new API are provided). The purpose is to remove prompting functions from the DES code section as well as provide for prompting through dialog boxes in a window system and the like.
* Instead of telling both 'make' and the user that ranlibBodo Möller2001-03-091-2/+1
| | | | | | errors can be tolerated, hide the error from 'make'. This gives shorter output both if ranlib fails and if it works.
* e_os.h does not belong with the exported headers. Do not put it thereRichard Levitte2001-02-221-10/+10
| | | | | | | | and make all files the depend on it include it without prefixing it with openssl/. This means that all Makefiles will have $(TOP) as one of the include directories.
* Make all configuration macros available for application by makingRichard Levitte2001-02-191-23/+27
| | | | | | | | | | | | sure they are available in opensslconf.h, by giving them names starting with "OPENSSL_" to avoid conflicts with other packages and by making sure e_os2.h will cover all platform-specific cases together with opensslconf.h. I've checked fairly well that nothing breaks with this (apart from external software that will adapt if they have used something like NO_KRB5), but I can't guarantee it completely, so a review of this change would be a good thing.
* 'ranlib' doesn't always run on some systems. That's actuallyRichard Levitte2000-09-251-1/+2
| | | | | acceptable, since all that happens if it fails is a library with an index, which makes linking slower, but still working correctly.
* 'make update'Richard Levitte2000-09-071-3/+5
|
* Enable DSO support on alpha (OSF1), cc and gcc.Geoff Thorpe2000-06-131-3/+6
| | | | | | Also, "make update" has added some missing functions to libeay.num, updated the TABLE for the alpha changes, and updated thousands of dependancies that have changed from recent commits.
* make updateRichard Levitte2000-03-201-1/+1
|
* Integrate podd.h sk.h into set_key.cUlf Möller2000-03-191-1/+1
|
* make updateUlf Möller2000-03-191-6/+2
|
* cleanup.Ulf Möller2000-03-191-3/+3
|
* asm workaround for SuSE LinuxUlf Möller2000-03-121-2/+2
| | | | proposed by Holger Reif