summaryrefslogtreecommitdiffstats
path: root/util/ssleay.num
AgeCommit message (Collapse)Author
2001-10-24make updateRichard Levitte
2001-09-20New function SSL_renegotiate_pending().Bodo Möller
New option SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION.
2001-09-14Get rid of junk (deleted/renamed function) by rebuildingBodo Möller
based on 0.9.6 tree.
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-10make updateRichard Levitte
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-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-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
2000-12-29"make update" plus a rewrite of both .num files.Richard Levitte
2000-09-11I started with a make update, but a rewrite was actually needed.Richard Levitte
Perhaps we should make rewrites the default thing to do?
2000-09-07*.num rewitten to include the extra information.Richard Levitte
2000-06-01"make update" + stripping the type-specific stack functions out ofGeoff Thorpe
libeay.num and ssleay.num.
2000-02-26make updateRichard Levitte
2000-02-24Don't define platform-dependent preprocessor symbols for OPENSSL_THREAD_DEFINES.Bodo Möller
"make update".
2000-01-26Some comments added, and slight code clean-ups.Bodo Möller
2000-01-07Submitted by:Ulf Möller
Reviewed by: PR:
1999-11-29Remainder of SSL purpose and trust code: trust and purpose setting inDr. Stephen Henson
SSL_CTX and SSL, functions to set them and defaults if no values set.
1999-07-21Additional user data argument to pem_password_cb function typeBodo Möller
and to lots of PEM_... functions. Submitted by: Damien Miller <dmiller@ilogic.com.au>
1999-07-11Various changes to stop VC++ choking under Win32.Dr. Stephen Henson
1999-05-15Update.Bodo Möller
1999-05-08Various Win32 fixes. Win95 doesn't support MoveFileEx() (which was used for aDr. Stephen Henson
Win32 version of rename() ). There isn't a precise rename() equivalent under Win95: the standard rename() complains if the destination already exists so replaced with a combination of unlink() and MoveFile().
1999-04-20Various fixes so Win32 compile may work. Convert GeneralNames to use safe stack.Dr. Stephen Henson
1999-03-22Fix security hole.Ben Laurie
1999-03-08Various fixes to Win32, update ssleay.num, libeay.num, shuffle various #ifdefsDr. Stephen Henson
around so more options appear in e_os.h
1999-03-03Fix the Win32 compile environment and add various changes so it will now compileDr. Stephen Henson
under Win32 (9X and NT) again. Note: some signed/unsigned changes recently checked in were killing the Win32 compile.
1999-02-19Patch so the new crl stuff actually compiles this time :-) Also update theDr. Stephen Henson
Win32 ordinals.
1999-02-01Oops! Restore ssleay.num: it got overwritten with libeay.num :-(Dr. Stephen Henson
1999-02-01Delete bogus V3 prototype and update the *.num files to include ordinals forDr. Stephen Henson
the new functions. Update MINFO.
1998-12-21Import of old SSLeay release: SSLeay 0.9.1b (unreleased)SSLeayRalf S. Engelschall
1998-12-21Import of old SSLeay release: SSLeay 0.9.0bRalf S. Engelschall
1998-12-21Import of old SSLeay release: SSLeay 0.8.1bRalf S. Engelschall