- 08 4月, 2001 1 次提交
-
-
由 Bodo Möller 提交于
-
- 09 3月, 2001 1 次提交
-
-
由 Bodo Möller 提交于
-
- 07 3月, 2001 1 次提交
-
-
由 Bodo Möller 提交于
-
- 06 3月, 2001 1 次提交
-
-
由 Bodo Möller 提交于
Add EC vaporware: change relevant Makefiles and add some empty source files. "make update".
-
- 22 2月, 2001 1 次提交
-
-
由 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.]
-
- 20 2月, 2001 1 次提交
-
-
由 Richard Levitte 提交于
missed any. This compiles and runs on Linux, and external applications have no problems with it. The definite test will be to build this on VMS.
-
- 28 12月, 2000 1 次提交
-
-
由 Bodo Möller 提交于
-
- 15 12月, 2000 1 次提交
-
-
由 Bodo Möller 提交于
-
- 28 11月, 2000 1 次提交
-
-
由 Bodo Möller 提交于
-
- 27 11月, 2000 1 次提交
-
-
由 Bodo Möller 提交于
"make update"
-
- 23 9月, 2000 1 次提交
-
-
由 Bodo Möller 提交于
-
- 14 3月, 2000 1 次提交
-
-
由 Bodo Möller 提交于
-
- 05 3月, 2000 1 次提交
-
-
由 Bodo Möller 提交于
-
- 25 2月, 2000 1 次提交
-
-
由 Dr. Stephen Henson 提交于
with a failure. Fix typos in some error codes.
-
- 24 2月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
-
- 21 2月, 2000 1 次提交
-
-
由 Bodo Möller 提交于
-
- 04 2月, 2000 1 次提交
-
-
由 Ulf Möller 提交于
-
- 22 1月, 2000 1 次提交
-
-
由 Dr. Stephen Henson 提交于
minor changes. Docs haven't been added at this stage. They are probably best included in the 'ciphers' program docs.
-
- 14 1月, 2000 1 次提交
-
-
由 Ulf Möller 提交于
returns int (1 = ok, 0 = not seeded). New function RAND_add() is the same as RAND_seed() but takes an estimate of the entropy as an additional argument.
-
- 11 1月, 2000 1 次提交
-
-
由 Bodo Möller 提交于
-
- 30 11月, 1999 1 次提交
-
-
由 Dr. Stephen Henson 提交于
SSL_CTX and SSL, functions to set them and defaults if no values set.
-
- 17 5月, 1999 1 次提交
-
-
由 Bodo Möller 提交于
because of missing session ID context (so that application programmers are directly pointed to what they should do differently).
-
- 13 5月, 1999 1 次提交
-
-
由 Bodo Möller 提交于
While modifying the sources, I found some inconsistencies on the use of s->cert vs. s->session->sess_cert; I don't know if those could really have caused problems, but possibly this is a proper bug-fix and not just a clean-up.
-
- 11 5月, 1999 2 次提交
-
-
由 Bodo Möller 提交于
Submitted by: Reviewed by: PR:
-
由 Bodo Möller 提交于
that SSL_set_{accept,connect}_state be called before SSL_{accept,connect} may be used. Submitted by: Reviewed by: PR:
-
- 10 5月, 1999 1 次提交
-
-
由 Bodo Möller 提交于
pointers. The cert_st handling is changed by this in various ways. Submitted by: Reviewed by: PR:
-
- 02 5月, 1999 1 次提交
-
-
由 Bodo Möller 提交于
Submitted by: Reviewed by: PR:
-
- 01 5月, 1999 1 次提交
-
-
由 Bodo Möller 提交于
Submitted by: Reviewed by: PR:
-
- 24 4月, 1999 2 次提交
-
-
由 Dr. Stephen Henson 提交于
script, translates function codes better and doesn't need the K&R function prototypes to work (NB. the K&R prototypes can't be wiped just yet: they are still needed by the DEF generator...). I also ran the script with the -rewrite option to update all the header and source files.
-
由 Bodo Möller 提交于
Submitted by: Reviewed by: PR:
-
- 20 4月, 1999 1 次提交
-
-
由 Ulf Möller 提交于
-
- 22 3月, 1999 1 次提交
-
-
由 Ben Laurie 提交于
-
- 06 3月, 1999 1 次提交
-
-
由 Ben Laurie 提交于
-
- 01 3月, 1999 1 次提交
-
-
由 Ben Laurie 提交于
-
- 25 2月, 1999 1 次提交
-
-
由 Ralf S. Engelschall 提交于
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
-
- 20 2月, 1999 1 次提交
-
-
由 Ben Laurie 提交于
-
- 16 2月, 1999 1 次提交
-
-
由 Mark J. Cox 提交于
[Eric A. Young, (from changes to C2Net SSLeay, integrated by Mark Cox)] Fix so that the version number in the master secret, when passed via RSA, checks that if TLS was proposed, but we roll back to SSLv3 (because the server will not accept higher), that the version number is 0x03,0x01, not 0x03,0x00 [Eric A. Young, (from changes to C2Net SSLeay, integrated by Mark Cox)] Submitted by: Reviewed by: PR:
-
- 21 12月, 1998 3 次提交
-
-
由 Ralf S. Engelschall 提交于
-
由 Ralf S. Engelschall 提交于
-
由 Ralf S. Engelschall 提交于
-