summaryrefslogtreecommitdiffstats
path: root/util/mkerr.pl
AgeCommit message (Collapse)Author
2011-05-19update dateDr. Stephen Henson
2011-02-08OCSP stapling fix (OpenSSL 0.9.8r/1.0.0d)Bodo Möller
Submitted by: Neel Mehta, Adam Langley, Bodo Moeller
2010-02-09update yearDr. Stephen Henson
2009-04-15PR: 1895Dr. Stephen Henson
Submitted by: Ger Hobbelt <ger@hobbelt.com> Approved by: steve@openssl.org Updates to mkerr.pl script.
2008-06-02Update year.Dr. Stephen Henson
2008-04-17Apply mingw patches as supplied by Roumen Petrov an Alon Bar-LevLutz Jänicke
PR: 1552 Submitted by: Roumen Petrov <openssl@roumenpetrov.info>, "Alon Bar-Lev" <alon.barlev@gmail.com>
2008-03-12Update year.Dr. Stephen Henson
2007-04-05Errors should actually be errors.Ben Laurie
2007-02-26use 2007 copyright for generated filesBodo Möller
2006-11-21Update from 0.9.8 stable. Eliminate duplicate error codes.Dr. Stephen Henson
2006-02-12RFC 3161 compliant time stamp request creation, response generationUlf Möller
and response verification. Submitted by: Zoltan Glozik <zglozik@opentsa.org> Reviewed by: Ulf Moeller
2006-01-08Detect more errors.Bodo Möller
Change assignment strategy: rathern than using max+r for new codes, find first hole in list of existing codes.
2006-01-08Detect SSL error code mishandling.Bodo Möller
2006-01-08include max. codes in debug outputBodo Möller
2006-01-02./util update, which covers various issues, but most importantly mkerr.plAndy Polyakov
and mkdef.pl spinning in endless loop.
2006-01-01util/mkerr.pl update to address various mkerr.pl problems [such as failureAndy Polyakov
to handle multi-line comments and endless loop while parsing overloaded gnu-ish __attribute__].
2005-05-09Update util/ck_errf.pl script, and have it run automaticallyBodo Möller
during "make errors" and thus during "make update". Fix lots of bugs that util/ck_errf.pl can detect automatically. Various others of these are still left to fix; that's why "make update" will complain loudly when run now.
2005-04-12Include error library value in C error source files instead of fixing upDr. Stephen Henson
at runtime.
2005-01-17Changes concering RFC 3820 (proxy certificates) integration:Richard Levitte
- Enforce that there should be no policy settings when the language is one of id-ppl-independent or id-ppl-inheritAll. - Add functionality to ssltest.c so that it can process proxy rights and check that they are set correctly. Rights consist of ASCII letters, and the condition is a boolean expression that includes letters, parenthesis, &, | and ^. - Change the proxy certificate configurations so they get proxy rights that are understood by ssltest.c. - Add a script that tests proxy certificates with SSL operations. Other changes: - Change the copyright end year in mkerr.pl. - make update.
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.