aboutsummaryrefslogtreecommitdiffstats
path: root/test/Makefile.ssl
Commit message (Collapse)AuthorAgeFilesLines
* make updateRichard Levitte2001-02-261-2/+2
| | | | | 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-74/+69
| | | | | | | | 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-60/+71
| | | | | | | | | | | | 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-48/+50
|
* Remove serial number file during 'make clean'.Bodo Möller2001-01-291-1/+1
|
* "make update" plus a rewrite of both .num files.Richard Levitte2000-12-291-16/+16
|
* Stop on bntest error.Ulf Möller2000-12-101-1/+1
|
* Don't throw away bctest's error messages.Bodo Möller2000-12-091-2/+2
|
* Printing "verify ..." should not be counted as a test for theBodo Möller2000-12-061-1/+1
| | | | "xxx tests passed" message.
* Use bc's "print" feature whenever it is available,Bodo Möller2000-12-061-6/+2
| | | | not just on certain platforms.
* Workaround for broken (or missing) bc.Bodo Möller2000-12-061-2/+6
|
* Move the rijndael "test" to the bf and cast tests.Ulf Möller2000-12-021-2/+2
|
* "make depend"Bodo Möller2000-12-011-16/+16
|
* First tentative impementation of Kerberos 5 cryptos and keys for SSL/TLS. ↵Richard Levitte2000-11-301-18/+18
| | | | Implemented by Vern Staats <staatsvr@asc.hpc.mil>, further hacked and distributed by Jeffrey Altman <jaltnab@columbia.edu>
* in some new file names the first 8 characters were not uniqueUlf Möller2000-11-121-4/+4
|
* For a long time, I've wanted to be able to easily run one or a fewRichard Levitte2000-11-121-4/+8
| | | | individual tests. I finally got myself to implement it...
* Merge the engine branch into the main trunk. All conflicts resolved.Richard Levitte2000-10-261-5/+31
| | | | At the same time, add VMS support for Rijndael.
* The experimental Rijndael code moved to the main trunk.Richard Levitte2000-10-141-2/+15
| | | | make update done.
* 'make update'Richard Levitte2000-09-071-6/+10
|
* MD4 implemented. Assar Westerlund provided the digest code itself and the ↵Richard Levitte2000-08-141-34/+46
| | | | 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-25/+27
| | | | | | | | | | | | | | | | | | 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-32/+34
| | | | | | 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.
* Run test_ssl last -- it's the only test that really uses the SSL libraryBodo Möller2000-03-131-1/+1
| | | | in addition to the crypto library.
* "openssl no-..." commands for avoiding the need to grepBodo Möller2000-03-131-3/+3
| | | | "openssl list-standard-commands".
* Corrections.Bodo Möller2000-03-131-1/+1
| | | | | In testss, use MD5 as digest algorithm so that the resulting certificates can be used for testssl with RSA.
* Update test suite so that 'make test' succeeds in 'no-rsa' configuration.Bodo Möller2000-03-131-5/+9
|
* Improve bntest slightly, and fix another bug in the BN library.Ulf Möller2000-02-061-8/+5
|
* Make DSA_generate_parameters, and fix a couple of bugBodo Möller2000-01-301-2/+3
| | | | (including another problem in the s3_srvr.c state machine).
* Tidy up CRYPTO_EX_DATA structures.Dr. Stephen Henson2000-01-231-4/+8
|
* Finish off the X509_ATTRIBUTE string stuff.Dr. Stephen Henson2000-01-201-9/+10
|
* Rename rsa_oaep_test to the more appropriate name rsa_test for theUlf Möller2000-01-181-6/+6
| | | | benefit of MS-DOS users.
* Delete "random" file .rnd in "make clean".Bodo Möller2000-01-141-1/+1
|
* Let "make test" survive without DEVRANDOMBodo Möller2000-01-141-4/+4
| | | | | (and rename a target in test/Makefile.ssl to make it easier to guess the name of the file executed by it)
* Use a temporary file, not a pipe, for BN test because there are someBodo Möller1999-09-241-2/+7
| | | | broken bc's around.
* RIPEMD160 shape-up. Final touch.Andy Polyakov1999-08-281-1/+1
|
* New function DSA_dup_DH, and fixes for bugs that were foundBodo Möller1999-08-051-4/+4
| | | | while implementing and using it.
* avoid some NO_<cipher> problemsBodo Möller1999-08-021-1/+1
|
* It was a very bad idea to use #include "../e_os.h" -- when this occursBodo Möller1999-05-211-33/+34
| | | | | | | | | | 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-34/+33
| | | | include file.
* Update dependencies.Bodo Möller1999-05-151-32/+33
|
* Get rid of the cast.Ben Laurie1999-05-151-1/+2
|
* Update dependencies.Ben Laurie1999-05-131-12/+14
|
* VMS support.Ulf Möller1999-05-131-1/+4
| | | | Submitted by: Richard Levitte <richard@levitte.org>
* Update dependencies.Ben Laurie1999-05-011-2/+2
|
* Support INSTALL_PREFIX for packagers.Bodo Möller1999-04-291-0/+2
| | | | | | Submitted by: Reviewed by: PR:
* "make depend"Bodo Möller1999-04-231-55/+80
| | | | | | Submitted by: Reviewed by: PR:
* Add type-safe STACKs and SETs.Ben Laurie1999-04-121-6/+9
|
* Test RSA after the BN library it is based on.Ulf Möller1999-04-081-4/+4
| | | | Submitted by: Anonymous <nobody@replay.com>
* New Makefile variables $(RANLIB) and $(PERL).Ulf Möller1999-04-011-2/+2
|
* Fix security hole.Ben Laurie1999-03-221-15/+16
|