summaryrefslogtreecommitdiffstats
path: root/crypto/rsa/rsa_gen.c (unfollow)
Commit message (Collapse)AuthorFilesLines
1999-04-26Extensively changed the DEF file generator mkdef.pl to use a modified versionDr. Stephen Henson2-164/+159
of Ulf's prototype parser, also general tidying and fixing of several problems with the original. Its still a bit of a hack but should work. This is the last bit of the old code that uses the K&R prototypes: after some testing they can finally go away...
1999-04-25Fixes so it will compile again under Win32.Dr. Stephen Henson5-14/+61
1999-04-25Various header consistency fixes.Dr. Stephen Henson8-0/+30
1999-04-25Fix mkerr.pl to find functions returning function pointers (thanks Ulf!)Dr. Stephen Henson3-8/+12
also add a few missing prototypes.
1999-04-25Submitted by:Ulf Möller1-1/+1
Reviewed by: PR:
1999-04-25Fixed a typo.Bodo Möller1-1/+1
Submitted by: Reviewed by: PR:
1999-04-25Comment changed.Bodo Möller1-1/+1
Submitted by: Reviewed by: PR:
1999-04-25exit on error.Ulf Möller1-1/+2
1999-04-25Removed traces of cryptall.h, and did a "make depend".Bodo Möller9-47/+71
Submitted by: Reviewed by: PR:
1999-04-25*** empty log message ***Ulf Möller1-0/+1
1999-04-25New Configure option --openssldir to replace ssldir.pl.Ulf Möller5-71/+14
1999-04-25New Configure option --openssldir to replace util/ssldir.pl.Ulf Möller4-83/+121
1999-04-24cryptall.h is not needed for anything and cannot even be #include-dBodo Möller1-110/+0
without producing error messages. Submitted by: Reviewed by: PR:
1999-04-24Fix header files so that any one can be included first.Bodo Möller7-1/+21
Submitted by: Reviewed by: PR:
1999-04-24Replaced by mkerr.plUlf Möller2-398/+0
1999-04-24Some instructions for how to handle the <foo.h> => <openssl/foo.h>Bodo Möller1-0/+66
transition. Submitted by: Reviewed by: PR:
1999-04-24Change the command line options of mkerr.pl so -static is now default andDr. Stephen Henson17-50/+39
a -write option is needed to actually change anything. Second attempt at getting rid of ERR, ERRC definitions: it might even work this time :-)
1999-04-24"perl util/mkerr.pl -static -recurse -rebuild" because the previousBodo Möller3-89/+70
codebase apparently was inconsistent. And crypto/Makefile.ssl *does* need an ERRC .. Submitted by: Reviewed by: PR:
1999-04-24Removed superfluous reference to ERRC.Bodo Möller1-2/+2
Submitted by: Reviewed by: PR:
1999-04-24Restore ERRC definitions that are needed to compile the library.Bodo Möller14-0/+14
Submitted by: Reviewed by: PR: Submitted by: Reviewed by: PR:
1999-04-24Avoid "incomprehensible" errors when required definitions are missing.Bodo Möller2-0/+6
Submitted by: Reviewed by: PR:
1999-04-24Delete the unnecessary ERR and ERRC lines in makefiles, add some functionalityDr. Stephen Henson26-69/+96
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.