aboutsummaryrefslogtreecommitdiffstats
path: root/util/ssleay.num
Commit message (Collapse)AuthorAgeFilesLines
* make updateRichard Levitte2004-05-251-3/+3
|
* SSL_COMP_get_compression_method is a typo (a missing 's' at the end ofRichard Levitte2004-03-251-2/+2
| | | | the symbol name).
* make updateGeoff Thorpe2003-10-281-0/+1
|
* make updateRichard Levitte2003-10-061-0/+3
|
* Make sure int SSL_COMP_add_compression_method() checks if a certainRichard Levitte2003-10-061-0/+1
| | | | | | | | | | | | | | | | | | | | 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().
* make updateDr. Stephen Henson2003-03-201-0/+1
|
* SSL_add_dir_cert_subjects_to_stack now exists for WIN32Bodo Möller2003-02-051-1/+1
|
* make updateBodo Möller2002-08-091-0/+2
|
* make updateRichard Levitte2001-10-241-0/+2
|
* New function SSL_renegotiate_pending().Bodo Möller2001-09-201-0/+1
| | | | New option SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION.
* Get rid of junk (deleted/renamed function) by rebuildingBodo Möller2001-09-141-19/+19
| | | | based on 0.9.6 tree.
* make updateRichard Levitte2001-07-311-0/+2
|
* make updateRichard Levitte2001-07-111-22/+15
| | | | | | | | 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!
* make updateRichard Levitte2001-07-101-1/+6
|
* Sort platforms lexicographically as well. Also, support more than twoRichard Levitte2001-03-021-1/+1
| | | | variants of a symbol.
* Introduce the possibility to access global variables throughRichard Levitte2001-03-021-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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).
* make updateRichard Levitte2001-02-261-0/+1
| | | | | Note that all *_it variables are suddenly non-existant according to libeay.num. This is a bug that will be corrected. Please be patient.
* e_os.h does not belong with the exported headers. Do not put it thereRichard Levitte2001-02-221-2/+2
| | | | | | | | 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.
* This change allows a callback to be used to override the generation ofGeoff Thorpe2001-02-211-0/+3
| | | | | | | | | | | | | | | | | | | | 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.]
* 'make update'Richard Levitte2001-02-211-1/+1
|
* "make update" plus a rewrite of both .num files.Richard Levitte2000-12-291-26/+41
|
* I started with a make update, but a rewrite was actually needed.Richard Levitte2000-09-111-7/+13
| | | | Perhaps we should make rewrites the default thing to do?
* *.num rewitten to include the extra information.Richard Levitte2000-09-071-189/+189
|
* "make update" + stripping the type-specific stack functions out ofGeoff Thorpe2000-06-011-38/+0
| | | | libeay.num and ssleay.num.
* make updateRichard Levitte2000-02-261-0/+1
|
* Don't define platform-dependent preprocessor symbols for OPENSSL_THREAD_DEFINES.Bodo Möller2000-02-241-0/+2
| | | | "make update".
* Some comments added, and slight code clean-ups.Bodo Möller2000-01-261-0/+1
|
* Submitted by:Ulf Möller2000-01-071-0/+2
| | | | | Reviewed by: PR:
* Remainder of SSL purpose and trust code: trust and purpose setting inDr. Stephen Henson1999-11-291-0/+4
| | | | SSL_CTX and SSL, functions to set them and defaults if no values set.
* Additional user data argument to pem_password_cb function typeBodo Möller1999-07-211-0/+1
| | | | | and to lots of PEM_... functions. Submitted by: Damien Miller <dmiller@ilogic.com.au>
* Various changes to stop VC++ choking under Win32.Dr. Stephen Henson1999-07-111-0/+2
|
* Update.Bodo Möller1999-05-151-0/+1
|
* Various Win32 fixes. Win95 doesn't support MoveFileEx() (which was used for aDr. Stephen Henson1999-05-081-0/+10
| | | | | | 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().
* Various fixes so Win32 compile may work. Convert GeneralNames to use safe stack.Dr. Stephen Henson1999-04-201-0/+32
|
* Fix security hole.Ben Laurie1999-03-221-0/+1
|
* Various fixes to Win32, update ssleay.num, libeay.num, shuffle various #ifdefsDr. Stephen Henson1999-03-081-1/+2
| | | | around so more options appear in e_os.h
* Fix the Win32 compile environment and add various changes so it will now compileDr. Stephen Henson1999-03-031-0/+3
| | | | | under Win32 (9X and NT) again. Note: some signed/unsigned changes recently checked in were killing the Win32 compile.
* Patch so the new crl stuff actually compiles this time :-) Also update theDr. Stephen Henson1999-02-191-0/+7
| | | | Win32 ordinals.
* Oops! Restore ssleay.num: it got overwritten with libeay.num :-(Dr. Stephen Henson1999-02-011-1175/+159
|
* Delete bogus V3 prototype and update the *.num files to include ordinals forDr. Stephen Henson1999-02-011-157/+1175
| | | | the new functions. Update MINFO.
* Import of old SSLeay release: SSLeay 0.9.1b (unreleased)Ralf S. Engelschall1998-12-211-0/+1
|
* Import of old SSLeay release: SSLeay 0.9.0bRalf S. Engelschall1998-12-211-11/+36
|
* Import of old SSLeay release: SSLeay 0.8.1bRalf S. Engelschall1998-12-211-0/+131