summaryrefslogtreecommitdiffstats
path: root/test
AgeCommit message (Collapse)Author
2000-11-22Addapt the VMS scripts to the changes in the Makefiles.Richard Levitte
2000-11-12in some new file names the first 8 characters were not uniqueUlf Möller
2000-11-12For a long time, I've wanted to be able to easily run one or a fewRichard Levitte
individual tests. I finally got myself to implement it...
2000-11-08Remove references to RSAref. The glue library is but a memory to fadeRichard Levitte
away now...
2000-10-26Merge the engine branch into the main trunk. All conflicts resolved.Richard Levitte
At the same time, add VMS support for Rijndael.
2000-10-14The experimental Rijndael code moved to the main trunk.Richard Levitte
make update done.
2000-09-08Synchronise the VMS build with the Unix one.Richard Levitte
2000-09-07'make update'Richard Levitte
2000-08-25Change PKCS#7 test data to take account of removal ofDr. Stephen Henson
indefinite length encoding.
2000-08-14MD4 implemented. Assar Westerlund provided the digest code itself and the ↵Richard Levitte
test utility, I added the bits to get a EVP interface, the command line utility and the speed test
2000-07-05I got sick and tired of having to keep track of NIDs when such a thingRichard Levitte
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.
2000-06-13Enable DSO support on alpha (OSF1), cc and gcc.Geoff Thorpe
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.
2000-03-18Small bugs in the test scripts removed.Richard Levitte
2000-03-16Typo corrected.Richard Levitte
2000-03-13another typoBodo Möller
2000-03-13typoBodo Möller
2000-03-13Synchronise with Unixly testsRichard Levitte
2000-03-13Run test_ssl last -- it's the only test that really uses the SSL libraryBodo Möller
in addition to the crypto library.
2000-03-13"openssl no-..." commands for avoiding the need to grepBodo Möller
"openssl list-standard-commands".
2000-03-13Include a timing test that works without RSA.Bodo Möller
2000-03-13Corrections.Bodo Möller
In testss, use MD5 as digest algorithm so that the resulting certificates can be used for testssl with RSA.
2000-03-13Update test suite so that 'make test' succeeds in 'no-rsa' configuration.Bodo Möller
2000-03-13Synchronise with Unix.Richard Levitte
2000-03-13Correct a potential bug.Richard Levitte
2000-03-13Don't try to test the RSA command if it is not available.Bodo Möller
2000-03-13Connection timings (using ISO C function clock()).Bodo Möller
2000-03-10Always use fixed DH parameters created with 'dhparam -C',Bodo Möller
don't dynamically create them. This allows using ssltest for approximate performance comparisons: $ time ./ssltest -num 50 -tls1 -cert ../apps/server2.pem \ [-no_dhe|-dhe1024dsa|-dhe1024] (server2.pem contains a 1024 bit RSA key, the default has only 512 bits.) Note that these timings contain both the server's and the client's computations, they are not a good indicator for server workload in different configurations.
2000-02-27New logical names to skip algorithms are now supported.Richard Levitte
2000-02-26Make sure that all test files are gone before starting the tests, orRichard Levitte
backup will complain about some version not existing. Perhaps.
2000-02-26Move to using the same perl code as Makefile.sslRichard Levitte
2000-02-26Just as in Unix, make sure to generate some kind of "random data".Richard Levitte
2000-02-26Typo corrected.Richard Levitte
2000-02-25Changes to synchronise with Unix.Richard Levitte
(actually, much more is needed, like a real config script)
2000-02-06Improve bntest slightly, and fix another bug in the BN library.Ulf Möller
2000-01-30SynchroniseRichard Levitte
2000-01-30Make DSA_generate_parameters, and fix a couple of bugBodo Möller
(including another problem in the s3_srvr.c state machine).
2000-01-23Tidy up CRYPTO_EX_DATA structures.Dr. Stephen Henson
2000-01-20Finish off the X509_ATTRIBUTE string stuff.Dr. Stephen Henson
2000-01-18Rename rsa_oaep_test to the more appropriate name rsa_test for theUlf Möller
benefit of MS-DOS users.
2000-01-16Synchronise with the makefiles.Richard Levitte
2000-01-14Delete "random" file .rnd in "make clean".Bodo Möller
2000-01-14Let "make test" survive without DEVRANDOMBodo Möller
(and rename a target in test/Makefile.ssl to make it easier to guess the name of the file executed by it)
1999-12-08Useless files deleted -- they were just copies of files of the same nameBodo Möller
in the apps/ directory (which were recently changed).
1999-11-12DIFFERENCE doesn't handle long (>255 chars) lines well. Use BACKUP instead. ↵Richard Levitte
No, I'm not joking.
1999-11-12adjust to changes in test/Makefile.sslRichard Levitte
1999-11-12adjust to changes in test/testsslRichard Levitte
1999-09-24Use a temporary file, not a pipe, for BN test because there are someBodo Möller
broken bc's around.
1999-09-10Repair another bug in s23_get_client_hello:Bodo Möller
tls1 did not survive to restarts, so get rid of it.
1999-09-03-no_dhe option for ssltest.cBodo Möller
1999-08-28RIPEMD160 shape-up. Final touch.Andy Polyakov