- 25 12月, 2011 1 次提交
-
-
由 Dr. Stephen Henson 提交于
Submitted by: Robin Seggelmann <seggelmann@fh-muenster.de> Reviewed by: steve Add SCTP support for DTLS (RFC 6083).
-
- 02 12月, 2011 1 次提交
-
-
由 Bodo Möller 提交于
Submitted by: Adam Langley Reviewed by: Bodo Moeller
-
- 05 9月, 2009 1 次提交
-
-
由 Dr. Stephen Henson 提交于
Submitted by: Robin Seggelmann <seggelmann@fh-muenster.de> Approved by: steve@openssl.org Fix DTLS cookie management bugs.
-
- 24 7月, 2009 1 次提交
-
-
由 Dr. Stephen Henson 提交于
-
- 26 6月, 2009 1 次提交
-
-
由 Dr. Stephen Henson 提交于
-
- 16 5月, 2009 1 次提交
-
-
由 Dr. Stephen Henson 提交于
-
- 15 4月, 2009 1 次提交
-
-
由 Dr. Stephen Henson 提交于
-
- 12 11月, 2008 1 次提交
-
-
由 Geoff Thorpe 提交于
knock-on work than expected - they've been extracted into a patch series that can be completed elsewhere, or in a different branch, before merging back to HEAD.
-
- 01 11月, 2008 1 次提交
-
-
由 Ben Laurie 提交于
-
- 13 3月, 2008 1 次提交
-
-
由 Dr. Stephen Henson 提交于
Initial support for CMS. Add zlib compression BIO. Add AES key wrap implementation. Generalize S/MIME MIME code to support CMS and/or PKCS7.
-
- 19 9月, 2007 1 次提交
-
-
由 Andy Polyakov 提交于
-
- 09 2月, 2007 1 次提交
-
-
由 Dr. Stephen Henson 提交于
-
- 25 12月, 2006 1 次提交
-
-
由 Dr. Stephen Henson 提交于
I thought it was about time I dusted this off. This stuff had been sitting on my hard drive for *ages* (2003 in fact). Hasn't been tested well and may not work properly. Nothing uses it at present which is just as well. Think of this as a traditional Christmas present which looks far more impressive in the adverts and on the box, some of the bits are missing and falls to bits if you play with it too much.
-
- 30 11月, 2006 1 次提交
-
-
由 Nils Larsch 提交于
Submitted by: Tracy Camp <tracyx.e.camp@intel.com>
-
- 19 12月, 2005 1 次提交
-
-
由 Andy Polyakov 提交于
from .h files...
-
- 17 12月, 2005 1 次提交
-
-
由 Andy Polyakov 提交于
PR: 1252
-
- 17 5月, 2005 1 次提交
-
-
由 Andy Polyakov 提交于
-
- 27 4月, 2005 2 次提交
-
-
由 Bodo Möller 提交于
("perl util/ck_errf.pl */*.c */*/*.c" still reports many more.)
-
由 Ben Laurie 提交于
-
- 12 8月, 2004 1 次提交
-
-
由 Richard Levitte 提交于
to bother creating a BIO around it. So here's a few more functions to make it possible to make the dump using a printing callback, and to print to a FILE* (based on the callback variant), done in the same style as the functions in crypto/err/err_prn.c.
-
- 04 4月, 2003 1 次提交
-
-
由 Richard Levitte 提交于
we're using the printing functions correctly or not. I used the corresponding attributes found in the header files of my Linux installation.
-
- 21 3月, 2003 1 次提交
-
-
由 Richard Levitte 提交于
-
- 06 2月, 2003 1 次提交
-
-
由 Bodo Möller 提交于
Submitted by: Toni Andjelkovic <toni@soth.at>
-
- 31 1月, 2003 1 次提交
-
-
由 Richard Levitte 提交于
let's make that a void *. Also, BIO_socket_nbio() should send it an int argument, not a long. PR: 457
-
- 13 11月, 2002 1 次提交
-
-
由 Ben Laurie 提交于
-
- 17 7月, 2002 1 次提交
-
-
由 Richard Levitte 提交于
PR: 124
-
- 11 6月, 2002 1 次提交
-
-
由 Ben Laurie 提交于
-
- 25 1月, 2002 1 次提交
-
-
由 Bodo Möller 提交于
-
- 23 1月, 2002 1 次提交
-
-
由 Ben Laurie 提交于
-
- 22 1月, 2002 1 次提交
-
-
由 Lutz Jänicke 提交于
-
- 12 1月, 2002 1 次提交
-
-
由 Ben Laurie 提交于
-
- 18 12月, 2001 1 次提交
-
-
由 Bodo Möller 提交于
-
- 15 11月, 2001 1 次提交
-
-
由 Richard Levitte 提交于
perl util/mkerr.pl -recurse -write -rebuild
-
- 16 8月, 2001 1 次提交
-
-
由 Lutz Jänicke 提交于
-
- 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.
-
- 12 10月, 2000 1 次提交
-
-
由 Dr. Stephen Henson 提交于
-
- 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.
-
- 17 9月, 2000 2 次提交
-
-
由 Bodo Möller 提交于
(it's similar to the shutdown(..., SHUT_WR) system call for sockets).
-
由 Dr. Stephen Henson 提交于
Update docs.
-
- 07 9月, 2000 1 次提交
-
-
由 Dr. Stephen Henson 提交于
Add docs for BIO_find_type() and friends. Added function BIO_next() otherwise you can't traverse a chain without accessing BIO internals.
-