summaryrefslogtreecommitdiffstats
path: root/util
AgeCommit message (Collapse)Author
2001-09-04Add a "_up" -> "_up_ref" change to libeay.num that was missing from theGeoff Thorpe
recent changes. Also, do the same change to the DSO_up() function.
2001-09-03Rename recently introduced functions for improved code clarity:Bodo Möller
[DR]SA_up => [DR]SA_up_ref
2001-09-01Make the necessary changes to work with the recent "ex_data" overhaul.Geoff Thorpe
See the commit log message for that for more information. NB: X509_STORE_CTX's use of "ex_data" support was actually misimplemented (initialisation by "memset" won't/can't/doesn't work). This fixes that but requires that X509_STORE_CTX_init() be able to handle errors - so its prototype has been changed to return 'int' rather than 'void'. All uses of that function throughout the source code have been tracked down and adjusted.
2001-09-01make updateUlf Möller
2001-08-26"make update"Geoff Thorpe
2001-08-18Add first cut symmetric crypto support.Ben Laurie
2001-08-03This ghastly hack prevents CVS wars over Kerberos (which is disabled by ↵Ben Laurie
default).
2001-07-31Make sure the source file is included among the dependencies. This isRichard Levitte
the norm for 'gcc -M' but not for 'makedepend', and is merely introduced here to avoid commit wars.
2001-07-31make updateRichard Levitte
2001-07-11make updateRichard Levitte
Note that since some private kssl functions were exported, the simplest way to rebuild the number table was to toss everything that was new since OpenSSL 0.9.6b. This is safe, since those functions have not yet been exported in an OpenSSL release. Beware, people who trust intermediary snapshots!
2001-07-11make updateRichard Levitte
2001-07-11Make sure crypto/krb5/krb5_asn.h is copied to the directory ofRichard Levitte
exported header files.
2001-07-11Make sure crypto/krb5/krb5_asn.h becomes part of libeay.num.Richard Levitte
2001-07-10make updateRichard Levitte
2001-07-01Changes to have OpenSSL compile on OS/2.Richard Levitte
Contributed by "Brian Havard" <brianh@kheldar.apana.org.au>
2001-06-23make updateRichard Levitte
2001-06-11Make updateDr. Stephen Henson
2001-06-05'make update'Richard Levitte
2001-05-13make updateRichard Levitte
2001-05-13Win16 too :-).Richard Levitte
2001-05-13When doing rewrites on ssleay.num, the file was prematurely closed.Richard Levitte
Make rewrites the default, since it works, and people get confused if changed information doesn't get rewritten automagically.
2001-05-12Change Win32 to use EXPORT_VAR_AS_FN.Dr. Stephen Henson
Fix OPENSSL_IMPLEMENT_GLOBAL. Allow Win32 to use EXPORT_VAR_AS_FN in mkdef.pl make update.
2001-05-10Fix to allow multiple NONE libraries in mkerr.pl .Dr. Stephen Henson
2001-05-08Don't forget crypto/ui...Richard Levitte
2001-05-06make updateRichard Levitte
2001-05-06Add a general user interface API. This is designed to replace thingsRichard Levitte
like des_read_password and friends (backward compatibility functions using this new API are provided). The purpose is to remove prompting functions from the DES code section as well as provide for prompting through dialog boxes in a window system and the like.
2001-04-27make updateRichard Levitte
2001-04-26Make proper use of all disabling variables.Richard Levitte
2001-04-26"make update"Geoff Thorpe
2001-04-26make updateRichard Levitte
2001-04-26We shouldn't skip over header files to avoid functions of disabled ↵Richard Levitte
algorithms. The selection is done in a different way
2001-04-22Make update.Geoff Thorpe
2001-04-08Add the possibility to have AES removed in Windows as well.Richard Levitte
Spotted by Harald Koch <chk@pobox.com>
2001-04-04Incorporate some changes that make OpenSSL compilable in CygWin.Richard Levitte
2001-03-29I forgot to rename des_encrypt to des_encrypt1 in libeay.num.Richard Levitte
2001-03-21Tag EC_GFp_{nist,recp}_method as "NOEXIST" because they haveBodo Möller
not yet been implemented.
2001-03-13make update.Richard Levitte
2001-03-10Add the 'ec' directory to mkdef.pl and mkfiles.plDr. Stephen Henson
so the Windows build can see it. Fixup mkdef.pl so it doesn't mess up with function names longer than 39 characters in length.
2001-03-08Avoid problems with multi-line NAME sections.Bodo Möller
2001-03-08Throw out *all* absolute pathnames, not matter what they look like.Bodo Möller
The filenames we are interested in for Makefile dependencies are always relative.
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-03-06Forgot a '$'.Ulf Möller
2001-03-06DECUlf Möller
2001-03-02Sort platforms lexicographically as well. Also, support more than twoRichard Levitte
variants of a symbol.
2001-03-02Introduce the possibility to access global variables throughRichard Levitte
functions on platform were that's the best way to handle exporting global variables in shared libraries. To enable this functionality, one must configure with "EXPORT_VAR_AS_FN" or defined the C macro "OPENSSL_EXPORT_VAR_AS_FUNCTION" in crypto/opensslconf.h (the latter is normally done by Configure or something similar). To implement a global variable, use the macro OPENSSL_IMPLEMENT_GLOBAL in the source file (foo.c) like this: OPENSSL_IMPLEMENT_GLOBAL(int,foo)=1; OPENSSL_IMPLEMENT_GLOBAL(double,bar); To declare a global variable, use the macros OPENSSL_DECLARE_GLOBAL and OPENSSL_GLOBAL_REF in the header file (foo.h) like this: OPENSSL_DECLARE_GLOBAL(int,foo); #define foo OPENSSL_GLOBAL_REF(foo) OPENSSL_DECLARE_GLOBAL(double,bar); #define bar OPENSSL_GLOBAL_REF(bar) The #defines are very important, and therefore so is including the header file everywere where the defined globals are used. The macro OPENSSL_EXPORT_VAR_AS_FUNCTION also affects the definition of ASN.1 items, but that structure is a bt different. The largest change is in util/mkdef.pl which has been enhanced with better and easier to understand logic to choose which symbols should go into the Windows .def files as well as a number of fixes and code cleanup (among others, algorithm keywords are now sorted lexicographically to avoid constant rewrites).
2001-02-27run self-test with no-krb5Ulf Möller
2001-02-26make updateRichard Levitte
Note that all *_it variables are suddenly non-existant according to libeay.num. This is a bug that will be corrected. Please be patient.
2001-02-22e_os.h does not belong with the exported headers. Do not put it thereRichard Levitte
and make all files the depend on it include it without prefixing it with openssl/. This means that all Makefiles will have $(TOP) as one of the include directories.
2001-02-22When inside a #if 0..#endif, do not define anything.Richard Levitte