summaryrefslogtreecommitdiff
path: root/crypto
Commit message (Collapse)AuthorAgeFilesLines
* Another stack.Ben Laurie1999-05-016-28/+57
|
* Another safe stack.Ben Laurie1999-05-017-54/+69
|
* Better to not have blanks in .cvsignore filesRalf S. Engelschall1999-05-011-1/+0
|
* Support verify_depth from the SSL API without need for user-definedBodo Möller1999-05-013-5/+7
| | | | | | | | callbacks. Submitted by: Reviewed by: PR:
* Use correct error macro so that error messages make sense.Bodo Möller1999-05-011-5/+5
| | | | | | Submitted by: Reviewed by: PR:
* Unused file.Ulf Möller1999-04-291-238/+0
|
* ignore Makefile.saveBodo Möller1999-04-291-0/+1
| | | | | | Submitted by: Reviewed by: PR:
* Support INSTALL_PREFIX for packagers.Bodo Möller1999-04-2935-71/+141
| | | | | | Submitted by: Reviewed by: PR:
* Bug fix.Ulf Möller1999-04-291-5/+7
|
* Compare with BN_mod_exp_simple, too.Ulf Möller1999-04-291-9/+24
|
* Ignore Makefile.saveUlf Möller1999-04-2933-0/+33
| | | | Submitted by: Anonymous
* Missing "else".Ulf Möller1999-04-291-2/+1
|
* Pass PERL to sub-Makefiles during "make links".Bodo Möller1999-04-291-1/+1
| | | | | | Submitted by: Reviewed by: PR:
* Obey $(PERL) when running util/mklink.pl.Bodo Möller1999-04-2935-105/+105
| | | | | | Submitted by: Reviewed by: PR:
* Change error message for consistency.Ulf Möller1999-04-281-1/+1
|
* Use util/mklink.pl instead of util/mklink.sh.Bodo Möller1999-04-2835-105/+105
| | | | | | Submitted by: Reviewed by: PR:
* Autogenerated files.Ulf Möller1999-04-282-2/+0
|
* Ignore autogenerated assembler files.Ulf Möller1999-04-282-0/+2
|
* Decrypt test vector data even if previous decryption failed to getUlf Möller1999-04-281-2/+1
| | | | better diagnostics.
* Pass $PERL on make dclean.Ulf Möller1999-04-281-1/+1
|
* Remove autogenerated file.Ulf Möller1999-04-271-976/+0
|
* Typo.Ulf Möller1999-04-271-1/+1
| | | | Pointed out by Nick Boyce <nick.boyce@eds.com>.
* More portable blowfish macros.Ulf Möller1999-04-274-60/+142
| | | | Submitted by: Andy Polyakov <appro@fy.chalmers.se>
* Update NO_* macros.Ulf Möller1999-04-276-15/+13
|
* Message digest stuff.Ulf Möller1999-04-2727-22/+54
|
* New Configure option no-<cipher> (rsa, idea, rc5, ...).Ulf Möller1999-04-272-0/+6
|
* Oops ... fix warning.Dr. Stephen Henson1999-04-271-1/+1
|
* New Configure option no-<cipher> (rsa, idea, rc5, ...).Ulf Möller1999-04-2795-90/+388
|
* Add PKCS#12 documentation and new option in x509 to add certificate extensions.Dr. Stephen Henson1999-04-274-6/+13
|
* Remove NOPROTO-related macros.Ulf Möller1999-04-265-7/+7
|
* Ignore autogenerated file.Ulf Möller1999-04-261-0/+2
| | | | Submitted by: Anonymous
* Remove NOPROTO definitions and error code comments.Ulf Möller1999-04-26228-3270/+2
|
* Fixes so it will compile again under Win32.Dr. Stephen Henson1999-04-253-5/+7
|
* Various header consistency fixes.Dr. Stephen Henson1999-04-257-0/+29
|
* Fix mkerr.pl to find functions returning function pointers (thanks Ulf!)Dr. Stephen Henson1999-04-252-2/+3
| | | | also add a few missing prototypes.
* Removed traces of cryptall.h, and did a "make depend".Bodo Möller1999-04-258-47/+70
| | | | | | Submitted by: Reviewed by: PR:
* New Configure option --openssldir to replace ssldir.pl.Ulf Möller1999-04-242-17/+9
|
* cryptall.h is not needed for anything and cannot even be #include-dBodo Möller1999-04-241-110/+0
| | | | | | | without producing error messages. Submitted by: Reviewed by: PR:
* Fix header files so that any one can be included first.Bodo Möller1999-04-246-1/+19
| | | | | | Submitted by: Reviewed by: PR:
* Replaced by mkerr.plUlf Möller1999-04-242-398/+0
|
* Change the command line options of mkerr.pl so -static is now default andDr. Stephen Henson1999-04-2413-39/+26
| | | | | a -write option is needed to actually change anything. Second attempt at getting rid of ERR, ERRC definitions: it might even work this time :-)
* "perl util/mkerr.pl -static -recurse -rebuild" because the previousBodo Möller1999-04-243-89/+70
| | | | | | | | codebase apparently was inconsistent. And crypto/Makefile.ssl *does* need an ERRC .. Submitted by: Reviewed by: PR:
* Removed superfluous reference to ERRC.Bodo Möller1999-04-241-2/+2
| | | | | | Submitted by: Reviewed by: PR:
* Restore ERRC definitions that are needed to compile the library.Bodo Möller1999-04-2412-0/+12
| | | | | | | | | | Submitted by: Reviewed by: PR: Submitted by: Reviewed by: PR:
* Avoid "incomprehensible" errors when required definitions are missing.Bodo Möller1999-04-242-0/+6
| | | | | | Submitted by: Reviewed by: PR:
* Delete the unnecessary ERR and ERRC lines in makefiles, add some functionalityDr. Stephen Henson1999-04-2422-59/+60
| | | | | | | | | | 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-2489-1935/+1147
| | | | | | | 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.
* Submitted by:Bodo Möller1999-04-239-9/+9
| | | | | Reviewed by: PR:
* Submitted by:Bodo Möller1999-04-231-2/+2
| | | | | Reviewed by: PR:
* "make depend"Bodo Möller1999-04-2335-2383/+3808
| | | | | | Submitted by: Reviewed by: PR: