- 14 3月, 2001 1 次提交
-
-
由 Richard Levitte 提交于
-
- 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).
-
- 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 1 次提交
-
-
由 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.
-
- 21 2月, 2001 1 次提交
-
-
由 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 1 次提交
-
-
由 Richard Levitte 提交于
-
- 29 12月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
-
- 28 11月, 2000 1 次提交
-
-
由 Bodo Möller 提交于
Fix BN_gcd. Analyze BN_mod_inverse. Add BN_kronecker. "make update".
-
- 27 11月, 2000 1 次提交
-
-
由 Bodo Möller 提交于
"make update"
-
- 14 11月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
-
- 09 11月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
away now...
-
- 27 10月, 2000 2 次提交
-
-
由 Richard Levitte 提交于
-
由 Richard Levitte 提交于
At the same time, add VMS support for Rijndael.
-
- 22 10月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
-
- 15 10月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
make update done.
-
- 13 10月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
-
- 25 9月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
-
- 20 9月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
record-oriented fashion. That means that every write() will write a separate record, which will be read separately by the programs trying to read from it. This can be very confusing. The solution is to put a BIO filter in the way that will buffer text until a linefeed is reached, and then write everything a line at a time, so every record written will be an actual line, not chunks of lines and not (usually doesn't happen, but I've seen it once) several lines in one record. Voila, BIO_f_linebuffer() is born. Since we're so close to release time, I'm making this VMS-only for now, just to make sure no code is needlessly broken by this. After the release, this BIO method will be enabled on all other platforms as well.
-
- 16 9月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
-
- 11 9月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
Perhaps we should make rewrites the default thing to do?
-
- 07 9月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
-
- 06 9月, 2000 1 次提交
-
-
由 Bodo Möller 提交于
-
- 04 9月, 2000 1 次提交
-
-
由 Bodo Möller 提交于
symbols for debugging are defined.
-
- 14 8月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
MD4 implemented. Assar Westerlund provided the digest code itself and the test utility, I added the bits to get a EVP interface, the command line utility and the speed test
-
- 02 8月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
-
- 24 7月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
-
- 20 6月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
-
- 18 6月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
be needed in some ENGINE code, and might serve elsewhere as well. Note that it's implemented in such a way that the locking itself is done through the same CRYPTO_lock function as the static locks. WARNING: This is currently experimental and untested code (it will get tested soon, though :-)).
-
- 16 6月, 2000 2 次提交
-
-
由 Geoff Thorpe 提交于
"symbols" including functions (of all prototypes( and variables. Whilst casting any function type to another violates ANSI C (I believe), it is a necessary evil in shared-library APIs. However, it is quite conceivable that functions in general and data symbols could very well be represented differently to each other on some systems, as Bodo said; > Since the function/object distinction is a lot more likely to be > important on real-life platforms supporting DSO *and* it can be quite > easily done *and* it will silence compilers that don't like > assignments from void pointers to function pointer variables, why > not do it? I agree. So this change splits the "dso_bind" handler in DSO_METHOD into "dso_bind_var" and "dso_bind_func". Similarly the exported function DSO_bind() has been split in two. I've also put together changes for the various DSO_METHOD implementations, but so far only DSO_dlfcn() has been tested. BTW: The prototype for dso_bind had been a bit strange so I've taken the opportunity to change its shape (in both variations). Also, the README has been updated - particularly with a note about using customised native name-translation for shared libraries (and that you can't do it yet).
-
由 Dr. Stephen Henson 提交于
-
- 13 6月, 2000 1 次提交
-
-
由 Geoff Thorpe 提交于
Also, "make update" has added some missing functions to libeay.num, updated the TABLE for the alpha changes, and updated thousands of dependancies that have changed from recent commits.
-
- 09 6月, 2000 1 次提交
-
-
由 Bodo Möller 提交于
marginally faster BN_mod_exp for 1024 bit exponents.
-
- 01 6月, 2000 2 次提交
-
-
由 Geoff Thorpe 提交于
libeay.num and ssleay.num.
-
由 Richard Levitte 提交于
-
- 30 5月, 2000 1 次提交
-
-
由 Geoff Thorpe 提交于
Also, corrects the linux-elf-arm config string, it was previously setting $des_obj = dlfcn :-)
-
- 29 5月, 2000 1 次提交
-
-
由 Geoff Thorpe 提交于
There's no trace of it being implemented and it doesn't seem to have been intended given that it is prototyped with a BIO yet there was a BIO- specific version added in at the same time.
-
- 19 5月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
-
- 20 4月, 2000 1 次提交
-
-
由 Geoff Thorpe 提交于
-