summaryrefslogtreecommitdiff
path: root/crypto/pem/Makefile.ssl
Commit message (Collapse)AuthorAgeFilesLines
* Merge main -> VMS_64BITBRANCH_VMS_64BITRichard Levitte2010-01-271-246/+0
|
* Many changes from 0.9.8-dev.Richard Levitte2005-02-251-1/+1
|
* Recent (and not so recent) changes from HEAD.Richard Levitte2004-06-281-125/+107
|
* This branch hasn't been updated with changes from HEAD for a looooong time...Richard Levitte2004-01-231-1/+1
| | | | Here goes.
* Recent changes from HEADRichard Levitte2002-12-291-184/+98
|
* Latest changes from main trunkRichard Levitte2002-10-111-1/+1
|
* Merge in all the changes from HEAD.Richard Levitte2002-08-131-77/+77
|
* Merge in the latest changes from HEAD.Richard Levitte2002-07-181-90/+176
|
* ECDSA supportBodo Möller2002-02-131-113/+127
| | | | Submitted by: Nils Larsch <nla@trustcenter.de>
* 'make update'Richard Levitte2002-02-051-1/+2
|
* make updateRichard Levitte2002-01-241-13/+13
| | | | | libeay.num got tweaked so the old des symbols would retain their positions.
* 'make update'Richard Levitte2001-10-041-60/+60
|
* Start to reduce some of the header bloat.Ben Laurie2001-08-051-22/+29
|
* make updateRichard Levitte2001-07-311-11/+11
|
* Really add the EVP and all of the DES changes.Ben Laurie2001-07-301-86/+116
|
* More linker bloat reorganisation:Dr. Stephen Henson2001-07-271-2/+2
| | | | | | | | | | | | | | | | | | | | | Split private key PEM and normal PEM handling. Private key handling needs to link in stuff like PKCS#8. Relocate the ASN1 *_dup() functions, to the relevant ASN1 modules using new macro IMPLEMENT_ASN1_DUP_FUNCTION. Previously these were all in crypto/x509/x_all.c along with every ASN1 BIO/fp function which linked in *every* ASN1 function if a single dup was used. Move the authority key id ASN1 structure to a separate file. This is used in the X509 routines and its previous location linked in all the v3 extension code. Also move ASN1_tag2bit to avoid linking in a_bytes.c which is now largely obsolete. So far under Linux stripped binary with single PEM_read_X509 is now 238K compared to 380K before these changes.
* First of several reorganisations toDr. Stephen Henson2001-07-261-2/+4
| | | | | | | | | | | | reduce linker bloat. For example the single line: PEM_read_X509() results in a binary of around 400K in Linux! This first step separates some of the PEM functions and avoids linking in some PKCS#7 and PKCS#12 code.
* 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.
* make updateRichard Levitte2001-02-261-21/+20
| | | | | Note that all *_it variables are suddenly non-existant according to libeay.num. This is a bug that will be corrected. Please be patient.
* e_os.h does not belong with the exported headers. Do not put it thereRichard Levitte2001-02-221-37/+37
| | | | | | | | 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-58/+60
| | | | | | | | | | | | 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.
* Make depend.Ben Laurie2001-02-041-69/+69
|
* in some new file names the first 8 characters were not uniqueUlf Möller2000-11-121-27/+26
|
* The experimental Rijndael code moved to the main trunk.Richard Levitte2000-10-141-22/+29
| | | | make update done.
* '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-11/+16
|
* MD4 implemented. Assar Westerlund provided the digest code itself and the ↵Richard Levitte2000-08-141-42/+45
| | | | test utility, I added the bits to get a EVP interface, the command line utility and the speed test
* I got sick and tired of having to keep track of NIDs when such a thingRichard Levitte2000-07-051-33/+36
| | | | | | | | | | | | | | | | | | could be done automagically, much like the numbering in libeay.num and ssleay.num. The solution works as follows: - New object identifiers are inserted in objects.txt, following the syntax given in objects.README. - objects.pl is used to process obj_mac.num and create a new obj_mac.h. - obj_dat.pl is used to create a new obj_dat.h, using the data in obj_mac.h. This is currently kind of a hack, and the perl code in objects.pl isn't very elegant, but it works as I intended. The simplest way to check that it worked correctly is to look in obj_dat.h and check the array nid_objs and make sure the objects haven't moved around (this is important!). Additions are OK, as well as consistent name changes.
* Enable DSO support on alpha (OSF1), cc and gcc.Geoff Thorpe2000-06-131-37/+41
| | | | | | 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.
* Introduce "BIO pairs", which (when finished) will relay dataBodo Möller1999-06-071-7/+8
| | | | | so that the SSL library can be used for applications that have to handle all the actual I/O themselves.
* It was a very bad idea to use #include "../e_os.h" -- when this occursBodo Möller1999-05-211-43/+44
| | | | | | | | | | in cryptlib.h (which is often included as "../cryptlib.h"), then the question remains relative to which directory this is to be interpreted. gcc went one further directory up, as intended; but makedepend thinks differently, and so probably do some C compilers. So the ../ must go away; thus e_os.h goes back into include/openssl (but I now use #include "openssl/e_os.h" instead of <openssl/e_os.h> to make the point) -- and we have another huge bunch of dependency changes. Argh.
* Don't install e_os.h in include/openssl, use it only as a localBodo Möller1999-05-201-44/+43
| | | | include file.
* Update dependencies.Bodo Möller1999-05-151-41/+42
|
* Update dependencies.Ben Laurie1999-05-131-12/+12
|
* Support INSTALL_PREFIX for packagers.Bodo Möller1999-04-291-2/+4
| | | | | | Submitted by: Reviewed by: PR:
* Obey $(PERL) when running util/mklink.pl.Bodo Möller1999-04-291-3/+3
| | | | | | Submitted by: Reviewed by: PR:
* Use util/mklink.pl instead of util/mklink.sh.Bodo Möller1999-04-281-3/+3
| | | | | | Submitted by: Reviewed by: PR:
* New Configure option no-<cipher> (rsa, idea, rc5, ...).Ulf Möller1999-04-271-1/+1
|
* Change the command line options of mkerr.pl so -static is now default andDr. Stephen Henson1999-04-241-3/+2
| | | | | a -write option is needed to actually change anything. Second attempt at getting rid of ERR, ERRC definitions: it might even work this time :-)
* Restore ERRC definitions that are needed to compile the library.Bodo Möller1999-04-241-0/+1
| | | | | | | | | | Submitted by: Reviewed by: PR: Submitted by: Reviewed by: PR:
* Delete the unnecessary ERR and ERRC lines in makefiles, add some functionalityDr. Stephen Henson1999-04-241-2/+0
| | | | | | | | | | to error code script: it can now find untranslatable function codes (usually because the function is static and not defined in a header: occasionally because of a typo...) and unreferenced function and reason codes. To see this try: perl util/mkerr.pl -recurse -debug Also fixed some typos in crypto/pkcs12 that this found :-) Also tidy up some error calls that had to be all on one line: the old error script couldn't find codes unless the call was all on one line.
* Complete rewrite of the error code generation script. It now runs as a singleDr. Stephen Henson1999-04-241-6/+0
| | | | | | | script, translates function codes better and doesn't need the K&R function prototypes to work (NB. the K&R prototypes can't be wiped just yet: they are still needed by the DEF generator...). I also ran the script with the -rewrite option to update all the header and source files.
* "make depend"Bodo Möller1999-04-231-65/+105
| | | | | | Submitted by: Reviewed by: PR:
* Change #include filenames from <foo.h> to <openssl.h>.Bodo Möller1999-04-231-3/+3
| | | | | | Submitted by: Reviewed by: PR:
* Work with -pedantic!Ben Laurie1999-04-231-7/+7
|
* Remove references to .org header file names.Ulf Möller1999-04-221-1/+0
|
* Update dependencies.Ben Laurie1999-04-181-59/+49
|
* Don#t auto-generate crypto/pem/pem.h -- a fixed file is fine for it.Bodo Möller1999-04-121-13/+3
| | | | | | Submitted by: Reviewed by: PR:
* Add type-safe STACKs and SETs.Ben Laurie1999-04-121-17/+19
|
* New Makefile variables $(RANLIB) and $(PERL).Ulf Möller1999-04-011-6/+6
|