- 04 9月, 2000 1 次提交
-
-
由 Bodo Möller 提交于
symbols for debugging are defined.
-
- 05 7月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
-
- 17 6月, 2000 1 次提交
-
-
由 Dr. Stephen Henson 提交于
After some messing around this seems to work but needs a few more tests. Working out the syntax for sk_set_cmp_func() (cast it to a function that itself returns a function pointer) was painful :-( Needs some testing to see what other compilers think of this syntax. Also needs similar stuff for ASN1_SET_OF etc etc.
-
- 09 6月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
was a really bad idea. For example, the following: #include <x509.h> #include <bio.h> #include <asn1.h> would make sure that things like ASN1_UTCTIME_print() wasn't defined unless you moved the inclusion of bio.h to above the inclusion of x509.h. The reason is that x509.h includes asn1.h, and the declaration of ASN1_UTCTIME_print() depended on the definition of HEADER_BIO_H. That's what I call an obscure bug. Instead, this change makes sure that whatever header files are needed for the correct process of one header file are included automagically, and that the definitions of, for example, BIO-related things are dependent on the absence of the NO_{foo} macros. This is also consistent with the way parts of OpenSSL can be excluded at will.
-
- 01 6月, 2000 1 次提交
-
-
由 Geoff Thorpe 提交于
libeay.num and ssleay.num.
-
- 02 5月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
"Jan Mikkelsen" <janm@transactionsite.com> correctly states that the OpenSSL header files have #include's and extern "C"'s in an incorrect order. Thusly fixed.
-
- 14 3月, 2000 1 次提交
-
-
由 Bodo Möller 提交于
-
- 06 3月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
-
- 26 2月, 2000 1 次提交
-
-
由 Richard Levitte 提交于
restored, but not as a macro this time...
-
- 25 2月, 2000 1 次提交
-
-
由 Dr. Stephen Henson 提交于
with a failure. Fix typos in some error codes.
-
- 24 2月, 2000 2 次提交
-
-
由 Ralf S. Engelschall 提交于
-
由 Richard Levitte 提交于
-
- 23 2月, 2000 1 次提交
-
-
由 Dr. Stephen Henson 提交于
Allow ADH to be used but not present in the default cipher list. Allow CERTIFICATE to be used in PEM headers for PKCS#7 structures: some CAs do this.
-
- 21 2月, 2000 2 次提交
-
-
由 Richard Levitte 提交于
designed for that. This removes the potential error to mix data and function pointers. Please note that I'm a little unsure how incorrect calls to the old ctrl functions should be handled, in som cases. I currently return 0 and that's it, but it may be more correct to generate a genuine error in those cases.
-
由 Bodo Möller 提交于
-
- 04 2月, 2000 2 次提交
-
-
由 Dr. Stephen Henson 提交于
OpenSSL_add_all_algorithms(). Move these into separate files so they work properly.
-
由 Ulf Möller 提交于
-
- 31 1月, 2000 1 次提交
-
-
由 Ulf Möller 提交于
eliminate some of the -Wcast-qual warnings (debug-ben-strict target)
-
- 27 1月, 2000 1 次提交
-
-
由 Bodo Möller 提交于
-
- 24 1月, 2000 1 次提交
-
-
由 Dr. Stephen Henson 提交于
Tidy up CRYPTO_EX_DATA structures.
-
- 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.
-
- 21 1月, 2000 1 次提交
-
-
由 Ulf Möller 提交于
-
- 17 1月, 2000 1 次提交
-
-
由 Ulf Möller 提交于
as a shared library without RSA. Use #ifndef NO_SSL2 instead of NO_RSA in ssl/s2*.c. Submitted by: Kris Kennaway <kris@hub.freebsd.org> Modified by Ulf Möller
-
- 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 提交于
-
- 06 1月, 2000 1 次提交
-
-
由 Bodo Möller 提交于
Add short state string for MS SGC.
-
- 30 11月, 1999 1 次提交
-
-
由 Dr. Stephen Henson 提交于
SSL_CTX and SSL, functions to set them and defaults if no values set.
-
- 29 11月, 1999 1 次提交
-
-
由 Dr. Stephen Henson 提交于
yet. Add a function X509_STORE_CTX_purpose_inherit() which implements the logic of "inheriting" purpose and trust from a parent structure and using a default: this will be used in the SSL code and possibly future S/MIME. Partial documentation of the 'verify' utility. Still need to document how all the extension checking works and the various error messages.
-
- 17 11月, 1999 1 次提交
-
-
由 Bodo Möller 提交于
-
- 14 9月, 1999 1 次提交
-
-
由 Bodo Möller 提交于
-
- 19 8月, 1999 1 次提交
-
-
由 Bodo Möller 提交于
In case of a restart, v[0] and v[1] were incorrectly initialised. This was interpreted by ssl3_get_client_key_exchange as an RSA decryption failure (don't ask me why) and caused it to create a _random_ master key instead (even weirder), which obviously led to incorrect input to ssl3_generate_master_secret and thus caused "block cipher pad is wrong" error messages from ssl3_enc for the client's Finished message. Arrgh.
-
- 08 8月, 1999 2 次提交
-
-
由 Bodo Möller 提交于
-
由 Bodo Möller 提交于
-
- 29 7月, 1999 1 次提交
-
-
由 Ulf Möller 提交于
Submitted by: Richard Levitte <levitte@stacken.kth.se>
-
- 22 7月, 1999 1 次提交
-
-
由 Bodo Möller 提交于
and to lots of PEM_... functions. Submitted by: Damien Miller <dmiller@ilogic.com.au>
-
- 02 7月, 1999 1 次提交
-
-
由 Bodo Möller 提交于
SSL_MODE_ENABLE_PARTIAL_WRITE, SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER.
-
- 28 6月, 1999 1 次提交
-
-
由 Bodo Möller 提交于
Submitted by: Anonymous
-
- 14 6月, 1999 1 次提交
-
-
由 Bodo Möller 提交于
-
- 10 6月, 1999 1 次提交
-
-
由 Ulf Möller 提交于
Pointed out by: Janez Jere <jj@void.si>
-
- 30 5月, 1999 1 次提交
-
-
由 Ben Laurie 提交于
-