- Mar 09, 1999
-
-
Dr. Stephen Henson authored
Win32 test batch file going again.
-
- Mar 08, 1999
-
-
Dr. Stephen Henson authored
ordinals to libeay.num.
-
Ralf S. Engelschall authored
-
Ralf S. Engelschall authored
BIO_get_ex_num, BIO_get_ex_data and BIO_set_ex_data to ms/libeay{16,32}.def. I'm not a Win32 hacker, but I think I've done it correctly. Steve or Ben: can you confirm that it's correct? I don't want to break any Win32 stuff.
-
Ralf S. Engelschall authored
under Unix and passes some trivial tests I've now added. But the whole stuff is horribly incomplete, so a README.1ST with a disclaimer was added to make sure no one expects that this stuff really works in the OpenSSL 0.9.2 release. Additionally I've started to clean the XS sources up and fixed a few little bugs and inconsistencies in OpenSSL.{pm,xs} and openssl_bio.xs. PS: I'm still not convinces whether we should try to make this finally running or kick it out and replace it with some other module....
-
- Mar 07, 1999
-
-
Ben Laurie authored
-
Ben Laurie authored
-
Ben Laurie authored
-
Ben Laurie authored
-
- Mar 06, 1999
-
-
Dr. Stephen Henson authored
make 'req' check the config file syntax before it adds extensions. Added info in the documentation as well.
-
Ralf S. Engelschall authored
platforms details on the command line without having to patch the Configure script everytime: One now can use ``perl Configure <id>:<details>'', i.e. platform ids are allowed to have details appended to them (seperated by colons). This is treated as there would be a static pre-configured entry in Configure's %table under key <id> with value <details> and ``perl Configure <id>'' is called. So, when you want to perform a quick test-compile under FreeBSD 3.1 with pgcc and without assembler stuff you can use ``perl Configure "FreeBSD-elf:pgcc:-O6:::"'' now, which overrides the FreeBSD-elf entry on-the-fly. (PS: Notice that the same effect _cannot_ be achieved by using ``make CC=pgcc ..'' etc, because you cannot override all things from there.)
-
Ben Laurie authored
-
Ralf S. Engelschall authored
Configure ...' command line. This way one can compile OpenSSL libraries with Position Independent Code (PIC) which is needed for linking it into DSOs.
-
Ben Laurie authored
-
Ralf S. Engelschall authored
-
Ralf S. Engelschall authored
questions now is the OpenSSL core team under openssl-core@openssl.org. And add a paragraph about the dual-license situation to make sure people recognize that _BOTH_ the OpenSSL license _AND_ the SSLeay license apply to the OpenSSL toolkit.
-
Ralf S. Engelschall authored
consistent in the source tree and replaced `/bin/rm' by `rm'. Additonally cleaned up the `make links' target: Remove unnecessary semicolons, subsequent redundant removes, inline point.sh into mklink.sh to speed processing and no longer clutter the display with confusing stuff. Instead only the actually done links are displayed.
-
Ben Laurie authored
-
- Mar 05, 1999
-
-
Dr. Stephen Henson authored
detached data encoding was wrong and free up public keys.
-
Dr. Stephen Henson authored
-
- Mar 04, 1999
-
-
Dr. Stephen Henson authored
by BUF_MEM_strdup(). Added text documentation to the BUF_MEM stuff.
-
Ralf S. Engelschall authored
doc/openssl_button.{gif,html} which is similar in style to the old SSLeay button and can be used by applications based on OpenSSL to show the relationship to the OpenSSL project. PS: This beast caused me three hours to create, because of the size I had to hand-paint the 7pt fonts in Photoshop.
-
Ralf S. Engelschall authored
ssl/ssl_lib.c and ssl/ssl.h. At least the double ctx-variable confused some compilers. Submitted by: Lennart Bong <lob@kulthea.stacken.kth.se> Reviewed by: Ralf S. Engelschall
-
Ralf S. Engelschall authored
between SSLeay 0.8 and 0.9 and just looks useless and confusing. Pointed out by: Lennart Bong <lob@kulthea.stacken.kth.se> Submitted by: Ralf S. Engelschall
-
- Mar 03, 1999
-
-
Dr. Stephen Henson authored
under Win32 (9X and NT) again. Note: some signed/unsigned changes recently checked in were killing the Win32 compile.
-
- Feb 28, 1999
-
-
Ben Laurie authored
-
Ben Laurie authored
-
- Feb 27, 1999
-
-
Ralf S. Engelschall authored
(Pointed out by Carlos Amengual).
-
- Feb 26, 1999
-
-
Dr. Stephen Henson authored
now change it to BN_RECURSION_MONT so it isn't compiled in.
-
- Feb 25, 1999
-
-
Ralf S. Engelschall authored
private keys and/or callback functions which directly correspond to their SSL_CTX_xxx() counterparts but work on a per-connection basis. This is needed for applications which have to configure certificates on a per-connection basis (e.g. Apache+mod_ssl) instead of a per-context basis (e.g. s_server). For the RSA certificate situation is makes no difference, but for the DSA certificate situation this fixes the "no shared cipher" problem where the OpenSSL cipher selection procedure failed because the temporary keys were not overtaken from the context and the API provided no way to reconfigure them. The new functions now let applications reconfigure the stuff and they are in detail: SSL_need_tmp_RSA, SSL_set_tmp_rsa, SSL_set_tmp_dh, SSL_set_tmp_rsa_callback and SSL_set_tmp_dh_callback. Additionally a new non-public-API function ssl_cert_instantiate() is used as a helper function and also to reduce code redundancy inside ssl_rsa.c. Submitted by: Ralf S. Engelschall Reviewed by: Ben Laurie
-
Ralf S. Engelschall authored
because they are useful for the DSA situation and should be recognized by the users. Thanks to Steve for the original hint.
-
Ralf S. Engelschall authored
within SSL_MKEY_MASK or SSL_AUTH_MASK, they are within SSL_EXP_MASK. So, the original variable has to be used instead of the already masked variable. Submitted by: Richard Levitte <levitte@stacken.kth.se> Reviewed by: Ralf S. Engelschall
-
Ralf S. Engelschall authored
Submitted by: Richard Levitte <levitte@stacken.kth.se> Reviewed by: Ralf S. Engelschall
-
Ralf S. Engelschall authored
from `int' to `unsigned int' because it's a length and initialized by EVP_DigestFinal() which expects an `unsigned int *'. Submitted by: Richard Levitte <levitte@stacken.kth.se> Reviewed by: Ralf S. Engelschall
-
Ralf S. Engelschall authored
script. Instead use the usual Shell->Perl transition trick.
-
- Feb 24, 1999
-
-
Ralf S. Engelschall authored
addition to RSA certificates) to match the behaviour of `openssl dsa -noout -modulus' as it's already the case for `openssl rsa -noout -modulus'. For RSA the -modulus is the real "modulus" while for DSA currently the public key is printed (a decision which was already done by `openssl dsa -modulus' in the past) which serves a similar purpose. Additionally the NO_RSA no longer completely removes the whole -modulus option; it now only avoids using the RSA stuff. Same applies to NO_DSA now, too.
-
- Feb 23, 1999
-
-
Ben Laurie authored
-
Dr. Stephen Henson authored
-
- Feb 22, 1999
-
-
Ben Laurie authored
-
- Feb 21, 1999
-
-
Ben Laurie authored
-