- 29 3月, 2001 1 次提交
-
-
由 Richard Levitte 提交于
-
- 21 3月, 2001 1 次提交
-
-
由 Bodo Möller 提交于
not yet been implemented.
-
- 14 3月, 2001 1 次提交
-
-
由 Richard Levitte 提交于
-
- 10 3月, 2001 1 次提交
-
-
由 Dr. Stephen Henson 提交于
Add the 'ec' directory to mkdef.pl and mkfiles.pl 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.
-
- 09 3月, 2001 1 次提交
-
-
由 Bodo Möller 提交于
-
- 08 3月, 2001 3 次提交
-
-
由 Bodo Möller 提交于
The filenames we are interested in for Makefile dependencies are always relative.
-
由 Bodo Möller 提交于
Change mkerr.pl so that it puts the ERR_load_..._strings() prototype in header files that it writes.
-
由 Bodo Möller 提交于
-
- 06 3月, 2001 2 次提交
-
-
由 Ulf Möller 提交于
-
由 Ulf Möller 提交于
-
- 02 3月, 2001 2 次提交
-
-
由 Richard Levitte 提交于
variants of a symbol.
-
由 Richard 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).
-
- 28 2月, 2001 1 次提交
-
-
由 Ulf Möller 提交于
-
- 26 2月, 2001 1 次提交
-
-
由 Richard 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.
-
- 22 2月, 2001 3 次提交
-
-
由 Richard 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.
-
由 Richard Levitte 提交于
-
由 Geoff 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.]
-
- 21 2月, 2001 3 次提交
-
-
由 Richard Levitte 提交于
-
由 Richard 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).
-
由 Richard Levitte 提交于
-
- 20 2月, 2001 1 次提交
-
-
由 Richard 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.
-
- 19 2月, 2001 4 次提交
-
-
由 Richard Levitte 提交于
-
由 Richard Levitte 提交于
-
由 Richard Levitte 提交于
files. Instead, insert proper information in the $def string, which will be properly munged later on.
-
由 Richard Levitte 提交于
-
- 16 2月, 2001 1 次提交
-
-
由 Richard Levitte 提交于
-
- 10 2月, 2001 1 次提交
-
-
由 Dr. Stephen Henson 提交于
Fix warning in apps/engine.c Remove definitions of deleted functions. Add missing definition of X509_VAL.
-
- 09 2月, 2001 1 次提交
-
-
由 Dr. Stephen Henson 提交于
and ASN1 code.
-
- 31 12月, 2000 4 次提交
-
-
由 Richard Levitte 提交于
Make sure those are purged...
-
由 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...
-
由 Richard Levitte 提交于
-
由 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.
-
- 29 12月, 2000 2 次提交
-
-
由 Richard Levitte 提交于
-
由 Richard Levitte 提交于
* detect "unknown" algorithms (any C macro starting with NO_ that is not explicitely mentioned in mkdef.pl as a known algorithm) and report. * add a number of algorithms that can be deselected. * look in ssl/kssl.h as well. * accept multiple whitespace (not just one SPC) in preprocessor lines.
-
- 21 12月, 2000 1 次提交
-
-
由 Dr. Stephen Henson 提交于
Win32 but it is getting there... Update mkdef.pl to handle ASN1_ANY and fix headers. Stop various VC++ warnings. Include some fixes from "Peter 'Luna' Runestig" <peter@runestig.com> Remove external declaration for des_set_weak_key_flag: it doesn't exist.
-
- 16 12月, 2000 2 次提交
-
-
由 Dr. Stephen Henson 提交于
Initial support for variables in DEF files.
-
由 Ulf Möller 提交于
compiler switch.
-
- 07 12月, 2000 1 次提交
-
-
由 Ulf Möller 提交于
it is missing.
-
- 06 12月, 2000 2 次提交
-
-
由 Richard Levitte 提交于
stderr...
-
由 Richard Levitte 提交于
-