summaryrefslogtreecommitdiffstats
path: root/util/ssleay.num
AgeCommit message (Collapse)Author
2011-05-11Sync ordinals.Dr. Stephen Henson
2011-03-23make update (1.1.0-dev)Richard Levitte
This meant alarger renumbering in util/libeay.num due to symbols appearing in 1.0.0-stable and 1.0.1-stable. However, since there's been no release on this branch yet, it should be harmless.
2011-03-12Add SRP support.Ben Laurie
2011-02-03make updateBodo Möller
2010-08-26sync and update ordinalsDr. Stephen Henson
2010-01-15make updateDr. Stephen Henson
2009-07-08Make update.Dr. Stephen Henson
2009-04-15Updates from 1.0.0-stable.Dr. Stephen Henson
2009-03-31Update from 1.0.0-stableDr. Stephen Henson
2008-11-15PR: 1574Dr. Stephen Henson
Submitted by: Jouni Malinen <j@w1.fi> Approved by: steve@openssl.org Ticket override support for EAP-FAST.
2008-06-05Sync ordinals with stable branch.Dr. Stephen Henson
2008-06-04Update ordinals.Dr. Stephen Henson
2007-08-31Update ssl code to support digests other than MD5+SHA1 in handshake.Dr. Stephen Henson
Submitted by: Victor B. Wagner <vitus@cryptocom.ru>
2007-08-12OPENSSL_NO_TLS1 WIN32 build support. Fix so normal build works again.Dr. Stephen Henson
2007-07-18WIN32 VC++ build fixes.Dr. Stephen Henson
2006-11-30Import ordinals from 0.9.8 and update.Dr. Stephen Henson
2006-04-17Fix (most) WIN32 warnings and errors.Dr. Stephen Henson
2006-03-10make updateNils Larsch
2006-02-12make updateUlf Möller
2005-05-09rebuild (starting with state from 0.9.7-stable branch) to avoid clutterBodo Möller
2005-04-26make updateBodo Möller
2004-07-12make updateRichard Levitte
(incidently, this also tells VMS that there exists a new symbol in the SSL library)
2004-05-25make updateRichard Levitte
2004-03-25SSL_COMP_get_compression_method is a typo (a missing 's' at the end ofRichard Levitte
the symbol name).
2003-10-28make updateGeoff Thorpe
2003-10-06make updateRichard Levitte
2003-10-06Make sure int SSL_COMP_add_compression_method() checks if a certainRichard Levitte
compression identity is already present among the registered compression methods, and if so, reject the addition request. Declare SSL_COMP_get_compression_method() so it can be used properly. Change ssltest.c so it checks what compression methods are available and enumerates them. As a side-effect, built-in compression methods will be automagically loaded that way. Additionally, change the identities for ZLIB and RLE to be conformant to draft-ietf-tls-compression-05.txt. Finally, make update. Next on my list: have the built-in compression methods added "automatically" instead of requiring that the author call SSL_COMP_add_compression_method() or SSL_COMP_get_compression_methods().
2003-03-20make updateDr. Stephen Henson
2003-02-05SSL_add_dir_cert_subjects_to_stack now exists for WIN32Bodo Möller
2002-08-09make updateBodo Möller
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: