summaryrefslogtreecommitdiffstats
path: root/util
AgeCommit message (Collapse)Author
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
2001-02-21This change allows a callback to be used to override the generation ofGeoff Thorpe
SSL/TLS session IDs in a server. According to RFC2246, the session ID is an arbitrary value chosen by the server. It can be useful to have some control over this "arbitrary value" so as to choose it in ways that can aid in things like external session caching and balancing (eg. clustering). The default session ID generation is to fill the ID with random data. The callback used by default is built in to ssl_sess.c, but registering a callback in an SSL_CTX or in a particular SSL overrides this. BTW: SSL callbacks will override SSL_CTX callbacks, and a new SSL structure inherits any callback set in its 'parent' SSL_CTX. The header comments describe how this mechanism ticks, and source code comments describe (hopefully) why it ticks the way it does. Man pages are on the way ... [NB: Lutz was also hacking away and helping me to figure out how best to do this.]
2001-02-21'make update'Richard Levitte
2001-02-21Modify mkdef.pl to recognise and parse prprocessor conditionals of theRichard Levitte
form '#if defined(...) || defined(...) || ...' and '#if !defined(...) && !defined(...) && ...'. This also avoids the growing number of special cases it was previously handling (some of them wrongly).
2001-02-21I had forgotten to change mkerr.pl to use the new macro system.Richard Levitte
2001-02-19Make all configuration macros available for application by makingRichard Levitte
sure they are available in opensslconf.h, by giving them names starting with "OPENSSL_" to avoid conflicts with other packages and by making sure e_os2.h will cover all platform-specific cases together with opensslconf.h. I've checked fairly well that nothing breaks with this (apart from external software that will adapt if they have used something like NO_KRB5), but I can't guarantee it completely, so a review of this change would be a good thing.
2001-02-19Remove temporary files when done.Richard Levitte
2001-02-19make updateRichard Levitte
2001-02-19Do not insert things in syms{} and kind{} when parsing the headerRichard Levitte
files. Instead, insert proper information in the $def string, which will be properly munged later on.
2001-02-19Make the choice of "makedepend" program choosable through a switch.Richard Levitte
2001-02-16Make it possible to use gcc to generate the dependency tables.Richard Levitte
2001-02-09Various Win32 related fixed. Make no-krb5 work in mkdef.pl .Dr. Stephen Henson
Fix warning in apps/engine.c Remove definitions of deleted functions. Add missing definition of X509_VAL.
2001-02-09Various updates to mkdef.pl to cope with new aesDr. Stephen Henson
and ASN1 code.
2000-12-31The option line may start with a space, which gives an empty option.Richard Levitte
Make sure those are purged...
2000-12-31Look for no-krb5 and add the definition of NO_KRB5 if it's there.Richard Levitte
I've no idea were the KRB5 header files and libraries are placed on Win32. When there's better knowledge, we might be able to process the other KRB5-related arguments as well...
2000-12-31Remove RSAref-related things.Richard Levitte
2000-12-31Remove anything connected to RSAref, since that's gone by now.Richard Levitte
Add the C macros OPENSSL_BUILD_SHLIBCRYPTO and OPENSSL_BUILD_SHLIBSSL to the build of the object files as appropriate for each library.