summaryrefslogtreecommitdiffstats
path: root/util/mkerr.pl
AgeCommit message (Collapse)Author
2004-12-05Update year.Dr. Stephen Henson
2003-04-04There's no need to check for __attribute__ with ANSI functions, sinceRichard Levitte
we only check to the opening parenthesis anyway...
2003-04-03Counter for GCC attributes.Richard Levitte
2003-02-06implement fast point multiplication with precomputationBodo Möller
Submitted by: Nils Larsch Reviewed by: Bodo Moeller
2002-02-13ECDSA supportBodo Möller
Submitted by: Nils Larsch <nla@trustcenter.de>
2002-02-07If the intended header file doesn't exist, create it.Richard Levitte
2002-01-24fix formatting of automatically generated error sectionBodo Möller
2001-11-15Make it possible to build completely static, independent error CRichard Levitte
files.
2001-05-10Fix to allow multiple NONE libraries in mkerr.pl .Dr. Stephen Henson
2001-03-08Sort openssl.ec, the configuration file for mkerr.pl.Bodo Möller
Change mkerr.pl so that it puts the ERR_load_..._strings() prototype in header files that it writes.
2001-03-08More method functions for EC_GFp_simple_method.Bodo Möller
2001-02-21I had forgotten to change mkerr.pl to use the new macro system.Richard Levitte
2000-11-08Remove references to RSAref. The glue library is but a memory to fadeRichard Levitte
away now...
2000-07-24Show the running line count and definition cont in debug mode. ThatRichard Levitte
has helped me a bit when I ran into trouble.
2000-05-19Remove extra comma (creates a unnessecary null element, right?).Richard Levitte
2000-03-05Preserve reason strings in automatically build tables.Bodo Möller
1999-12-23Add PKCS#8 utility functions and add PBE options.Dr. Stephen Henson
1999-06-22New function PKCS7_signatureVerify to allow the signing certificate toDr. Stephen Henson
be explicitly stated with PKCS#7 verify. Also fix for util/mkerr.pl: if the -nostatic option is being used this will be for an external library so the autogenerated C file should include the header file as: #include "any/path/to/header.h" rather than the internal library form: #include <openssl/header.h>
1999-04-25Fix mkerr.pl to find functions returning function pointers (thanks Ulf!)Dr. Stephen Henson
also add a few missing prototypes.
1999-04-24Change the command line options of mkerr.pl so -static is now default andDr. Stephen Henson
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-24Delete the unnecessary ERR and ERRC lines in makefiles, add some functionalityDr. Stephen Henson
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.
1999-04-24ANSIfy, fix typo in error message, and remove redundant statement fromUlf Möller
my code.
1999-04-24Complete rewrite of the error code generation script. It now runs as a singleDr. Stephen Henson
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.