OpenBSD CVS

CVS log for src/lib/libssl/Attic/s23_srvr.c


[BACK] Up to [local] / src / lib / libssl

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.58, Thu Jan 26 05:31:25 2017 UTC (7 years, 4 months ago) by jsing
Branch: MAIN
CVS Tags: HEAD
Changes since 1.57: +1 -1 lines
FILE REMOVED

Merge the client/server version negotiation into the existing (currently
fixed version) client/server code.

ok beck@

Revision 1.57 / (download) - annotate - [select for diffs], Mon Jan 23 14:35:42 2017 UTC (7 years, 4 months ago) by jsing
Branch: MAIN
Changes since 1.56: +3 -3 lines
Diff to previous 1.56 (colored)

Move options and mode from SSL_CTX and SSL to internal, since these can be
set and cleared via existing functions.

Revision 1.56 / (download) - annotate - [select for diffs], Mon Jan 23 13:36:13 2017 UTC (7 years, 4 months ago) by jsing
Branch: MAIN
Changes since 1.55: +2 -2 lines
Diff to previous 1.55 (colored)

Split most of SSL_METHOD out into an internal variant, which is opaque.

Discussed with beck@

Revision 1.55 / (download) - annotate - [select for diffs], Mon Jan 23 08:48:44 2017 UTC (7 years, 4 months ago) by beck
Branch: MAIN
Changes since 1.54: +14 -14 lines
Diff to previous 1.54 (colored)

send state and rstate from ssl_st into internal. There are accessors
so these should not be diddled with directly
ok jsing@

Revision 1.54 / (download) - annotate - [select for diffs], Mon Jan 23 06:45:30 2017 UTC (7 years, 4 months ago) by beck
Branch: MAIN
Changes since 1.53: +18 -18 lines
Diff to previous 1.53 (colored)

Move a large part of ssl_st into internal, so we can see what squeals.
ok jsing@

Revision 1.53 / (download) - annotate - [select for diffs], Mon Jan 23 04:55:26 2017 UTC (7 years, 4 months ago) by beck
Branch: MAIN
Changes since 1.52: +9 -9 lines
Diff to previous 1.52 (colored)

move the callbacks from ssl_st to internal
ok jsing@

Revision 1.52 / (download) - annotate - [select for diffs], Mon Jan 23 04:15:28 2017 UTC (7 years, 4 months ago) by jsing
Branch: MAIN
Changes since 1.51: +3 -3 lines
Diff to previous 1.51 (colored)

Move callback function pointers and argument pointers from SSL_CTX to
internal.

ok beck@

Revision 1.51 / (download) - annotate - [select for diffs], Mon Jan 23 00:12:54 2017 UTC (7 years, 4 months ago) by jsing
Branch: MAIN
Changes since 1.50: +2 -2 lines
Diff to previous 1.50 (colored)

Move the stats struct from SSL_CTX to internal.

ok beck@

Revision 1.50 / (download) - annotate - [select for diffs], Sun Jan 22 09:02:07 2017 UTC (7 years, 4 months ago) by jsing
Branch: MAIN
Changes since 1.49: +4 -4 lines
Diff to previous 1.49 (colored)

Move most of the SSL3_STATE fields to internal - the ones that remain are
known to be used by ports.

ok beck@

Revision 1.49 / (download) - annotate - [select for diffs], Tue Jan 3 16:57:15 2017 UTC (7 years, 5 months ago) by jsing
Branch: MAIN
Changes since 1.48: +25 -73 lines
Diff to previous 1.48 (colored)

Pull out, rework and dedup the code that determines the highest shared
version.

ok beck@ doug@

Revision 1.48 / (download) - annotate - [select for diffs], Fri Nov 4 18:33:11 2016 UTC (7 years, 7 months ago) by guenther
Branch: MAIN
Changes since 1.47: +2 -2 lines
Diff to previous 1.47 (colored)

Mark a couple local functions as static

ok jsing@ beck@

Revision 1.47 / (download) - annotate - [select for diffs], Sat Jul 16 04:42:35 2016 UTC (7 years, 10 months ago) by beck
Branch: MAIN
Changes since 1.46: +9 -1 lines
Diff to previous 1.46 (colored)

Limit the support of the "backward compatible" ssl2 handshake to only be
used if TLS 1.0 is enabled. Sugessted/discussed with jsing@ and bcook@.
ok guenther@ sthen@

Revision 1.46 / (download) - annotate - [select for diffs], Sun Oct 25 15:49:04 2015 UTC (8 years, 7 months ago) by doug
Branch: MAIN
Changes since 1.45: +26 -26 lines
Diff to previous 1.45 (colored)

Simplify ssl23_get_client_hello error handling.

ssl23_get_client_hello sets type=1 on error and continues processing.
It should return an error immediately to simplify things.  This also
allows us to start removing the last of SSL_OP_NO_SSL*.

Added extra paranoia for s->version to make sure it is set properly.

ok jsing@

Revision 1.45 / (download) - annotate - [select for diffs], Fri Sep 11 18:08:21 2015 UTC (8 years, 9 months ago) by jsing
Branch: MAIN
Changes since 1.44: +3 -3 lines
Diff to previous 1.44 (colored)

Rename functions that moved to t1_enc.c, with a tls1_ prefix instead of a
ssl3_ prefix.

ok beck@

Revision 1.44 / (download) - annotate - [select for diffs], Fri Sep 11 14:47:56 2015 UTC (8 years, 9 months ago) by jsing
Branch: MAIN
Changes since 1.43: +1 -58 lines
Diff to previous 1.43 (colored)

Put the *server_method* data structures and functions in the same place.
We can also now nuke ssl23_get_server_method() since it is the same as
tls1_get_server_method().

ok miod@

Revision 1.43 / (download) - annotate - [select for diffs], Sat Aug 29 17:15:52 2015 UTC (8 years, 9 months ago) by doug
Branch: MAIN
Changes since 1.42: +2 -59 lines
Diff to previous 1.42 (colored)

Now that SSLv3 is going away, TLS_* and SSLv23 are equivalent.

Remove the TLS method data and tls_any_* functions.  Point to SSLv23.

ok jsing@

Revision 1.42 / (download) - annotate - [select for diffs], Thu Aug 27 06:21:15 2015 UTC (8 years, 9 months ago) by doug
Branch: MAIN
Changes since 1.41: +5 -20 lines
Diff to previous 1.41 (colored)

Remove SSLv3 support from LibreSSL.

This is the first wave of SSLv3 removal which removes the main SSLv3
functions.  Future commits will remove the rest of the SSLv3 support.

Discussed the plan at c2k15.  Input from jsing@, beck@, miod@, bcook@,
sthen@, naddy@, and deraadt@.

ok jsing@, beck@

Revision 1.41 / (download) - annotate - [select for diffs], Sun Jul 19 07:30:06 2015 UTC (8 years, 10 months ago) by doug
Branch: MAIN
Changes since 1.40: +6 -6 lines
Diff to previous 1.40 (colored)

Fix symbol collision with libtls.

Pointed out by guenther.

ok guenther@

Revision 1.40 / (download) - annotate - [select for diffs], Sun Jul 19 06:31:32 2015 UTC (8 years, 10 months ago) by doug
Branch: MAIN
Changes since 1.39: +64 -1 lines
Diff to previous 1.39 (colored)

Add TLS_method, TLS_client_method and TLS_server_method.

Use these instead of SSLv23_*method when you want to make sure TLS is
used.

By default, we disable SSLv3 but it's still possible for the user to
re-enable it.  TLS_*method does not allow SSLv3.

Both BoringSSL and (next version of) OpenSSL have these methods.
However, they have changed the implementation significantly.  We will
as well, but not right now.

Riding the libssl major bump.

ok miod@ bcook@

Revision 1.39 / (download) - annotate - [select for diffs], Fri Mar 27 12:29:54 2015 UTC (9 years, 2 months ago) by jsing
Branch: MAIN
Changes since 1.38: +6 -14 lines
Diff to previous 1.38 (colored)

Factor out the init_buf initialisation code, rather than duplicating it
in four different places.

ok doug@ guenther@

Revision 1.38 / (download) - annotate - [select for diffs], Fri Feb 6 08:30:23 2015 UTC (9 years, 4 months ago) by jsing
Branch: MAIN
Changes since 1.37: +3 -1 lines
Diff to previous 1.37 (colored)

Bring back the horrible API that is get_cipher_by_char/put_cipher_by_char.

This API was intended to be an internal only, however like many things in
OpenSSL, it is exposed externally and parts of the software ecosystem are
now using it since there is no real alternative within the public API.

ok doug@, tedu@ and reluctantly miod@

Revision 1.37 / (download) - annotate - [select for diffs], Wed Dec 10 15:43:31 2014 UTC (9 years, 6 months ago) by jsing
Branch: MAIN
Changes since 1.36: +5 -2 lines
Diff to previous 1.36 (colored)

ssl3_init_finished_mac() calls BIO_new() which can fail since it in turn
calls malloc(). Instead of silently continuing on failure, check the return
value of BIO_new() and propagate failure back to the caller for appropriate
handling.

ok bcook@

Revision 1.36 / (download) - annotate - [select for diffs], Sun Nov 16 14:12:47 2014 UTC (9 years, 6 months ago) by jsing
Branch: MAIN
Changes since 1.35: +4 -2 lines
Diff to previous 1.35 (colored)

Sort and group includes.

Revision 1.35 / (download) - annotate - [select for diffs], Sat Oct 18 16:13:16 2014 UTC (9 years, 7 months ago) by jsing
Branch: MAIN
Changes since 1.34: +1 -2 lines
Diff to previous 1.34 (colored)

Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes().

arc4random provides high quality pseudo-random numbers, hence there is no
need to differentiate between "strong" and "pseudo". Furthermore, the
arc4random_buf() function is guaranteed to succeed, which avoids the need
to check for and handle failure, simplifying the code.

It is worth noting that a number of the replaced RAND_bytes() and
RAND_pseudo_bytes() calls were missing return value checks and these
functions can fail for a number of reasons (at least in OpenSSL -
thankfully they were converted to wrappers around arc4random_buf() some
time ago in LibreSSL).

ok beck@ deraadt@ miod@

Revision 1.34 / (download) - annotate - [select for diffs], Sun Aug 10 14:42:56 2014 UTC (9 years, 10 months ago) by jsing
Branch: MAIN
Changes since 1.33: +1 -3 lines
Diff to previous 1.33 (colored)

Since we no longer need to support SSLv2-style cipher lists, start
unravelling the maze of function pointers and callbacks by directly
calling ssl3_{get,put}_cipher_by_char() and removing the
ssl_{get,put}_cipher_by_char macros.

Prompted by similar changes in boringssl.

ok guenther.

Revision 1.14.4.1 / (download) - annotate - [select for diffs], Sat Aug 9 16:55:55 2014 UTC (9 years, 10 months ago) by tedu
Changes since 1.14: +23 -7 lines
Diff to previous 1.14 (colored) next main 1.15 (colored)

backport relevant security fixes from openssl 1.0.1i
tested by bcook jsg

Revision 1.14.8.1 / (download) - annotate - [select for diffs], Sat Aug 9 16:54:58 2014 UTC (9 years, 10 months ago) by tedu
Changes since 1.14: +23 -7 lines
Diff to previous 1.14 (colored) next main 1.15 (colored)

backport relevant security fixes from openssl 1.0.1i
tested by bcook jsg

Revision 1.33 / (download) - annotate - [select for diffs], Thu Aug 7 19:46:31 2014 UTC (9 years, 10 months ago) by miod
Branch: MAIN
Changes since 1.32: +3 -6 lines
Diff to previous 1.32 (colored)

When you expect a function to return a particular value, don't put a comment
saying that you expect it to return that value and compare it against zero
because it is supposedly faster, for this leads to bugs (especially given the
high rate of sloppy cut'n'paste within ssl3 and dtls1 routines in this
library).

Instead, compare for the exact value it ought to return upon success.

ok deraadt@

Revision 1.32 / (download) - annotate - [select for diffs], Thu Aug 7 04:49:53 2014 UTC (9 years, 10 months ago) by deraadt
Branch: MAIN
Changes since 1.31: +27 -5 lines
Diff to previous 1.31 (colored)

Fix CVE-2014-3511; TLS downgrade, verbatim diff
https://git.openssl.org/gitweb/?p=openssl.git;a=commit;h=280b1f1ad12131defcd986676a8fc9717aaa601b
ok guenther miod

Revision 1.31 / (download) - annotate - [select for diffs], Fri Jul 11 08:17:36 2014 UTC (9 years, 11 months ago) by miod
Branch: MAIN
Changes since 1.30: +4 -4 lines
Diff to previous 1.30 (colored)

No need to keep ssl23_foo() flavours mapping to ssl3_foo().
ok tedu@

Revision 1.30 / (download) - annotate - [select for diffs], Thu Jul 10 08:51:14 2014 UTC (9 years, 11 months ago) by tedu
Branch: MAIN
Changes since 1.29: +2 -2 lines
Diff to previous 1.29 (colored)

decompress libssl. ok beck jsing

Revision 1.29 / (download) - annotate - [select for diffs], Mon Jun 30 14:13:27 2014 UTC (9 years, 11 months ago) by tedu
Branch: MAIN
Changes since 1.28: +3 -2 lines
Diff to previous 1.28 (colored)

fix the identical leak in three different files.
reported by Brent Cook, original diff by logan

Revision 1.28 / (download) - annotate - [select for diffs], Thu Jun 12 15:49:31 2014 UTC (10 years ago) by deraadt
Branch: MAIN
Changes since 1.27: +1 -1 lines
Diff to previous 1.27 (colored)

tags as requested by miod and tedu

Revision 1.27 / (download) - annotate - [select for diffs], Fri May 30 14:30:50 2014 UTC (10 years ago) by tedu
Branch: MAIN
Changes since 1.26: +0 -11 lines
Diff to previous 1.26 (colored)

remove some #if 0 code. we don't need any more reminders that we're using
a not quite appropriate data structure. ok jsing

Revision 1.26 / (download) - annotate - [select for diffs], Sat May 24 15:20:35 2014 UTC (10 years ago) by miod
Branch: MAIN
Changes since 1.25: +27 -32 lines
Diff to previous 1.25 (colored)

Code using malloc() in ssl23_get_client_hello() got removed 12 years ago,
it's time to remove the test for a possible need to free().
ok jsing@

Revision 1.25 / (download) - annotate - [select for diffs], Sat May 24 12:44:48 2014 UTC (10 years ago) by jsing
Branch: MAIN
Changes since 1.24: +39 -3 lines
Diff to previous 1.24 (colored)

DeIMPLEMENT libssl. Expand the IMPLEMENT_* macros since it is far more
readable and one less layer of abstraction. Use C99 initialisers for
clarity, grepability and to protect from future field reordering/removal.

ok miod@ (tedu@ also thought it was a wonderful idea, beck@ also agreed,
but ran away squealing since it reminded him of the VOP layer...)

Revision 1.24 / (download) - annotate - [select for diffs], Sat Apr 19 17:07:35 2014 UTC (10 years, 1 month ago) by jsing
Branch: MAIN
Changes since 1.23: +13 -13 lines
Diff to previous 1.23 (colored)

More KNF.

Revision 1.23 / (download) - annotate - [select for diffs], Sat Apr 19 08:52:32 2014 UTC (10 years, 1 month ago) by guenther
Branch: MAIN
Changes since 1.22: +4 -5 lines
Diff to previous 1.22 (colored)

More KNF and style consistency tweaks

Revision 1.22 / (download) - annotate - [select for diffs], Thu Apr 17 23:35:40 2014 UTC (10 years, 1 month ago) by tedu
Branch: MAIN
Changes since 1.21: +0 -5 lines
Diff to previous 1.21 (colored)

whack a bunch of disabled code. ok beck lteo

Revision 1.21 / (download) - annotate - [select for diffs], Thu Apr 17 13:37:49 2014 UTC (10 years, 1 month ago) by beck
Branch: MAIN
Changes since 1.20: +2 -2 lines
Diff to previous 1.20 (colored)

Change library to use intrinsic memory allocation functions instead of
OPENSSL_foo wrappers. This changes:
OPENSSL_malloc->malloc
OPENSSL_free->free
OPENSSL_relloc->realloc
OPENSSL_freeFunc->free

Revision 1.20 / (download) - annotate - [select for diffs], Wed Apr 16 15:10:07 2014 UTC (10 years, 1 month ago) by guenther
Branch: MAIN
Changes since 1.19: +12 -7 lines
Diff to previous 1.19 (colored)

Kill the bogus "send an SSLv3/TLS hello in SSLv2 format" crap from
the SSLv23_* client code.  The server continues to accept it.  It
also kills the bits for SSL2 SESSIONs; even when the server gets
an SSLv2-style compat handshake, the session that it creates has
the correct version internally.

ok tedu@ beck@

Revision 1.19 / (download) - annotate - [select for diffs], Tue Apr 15 21:47:56 2014 UTC (10 years, 1 month ago) by tedu
Branch: MAIN
Changes since 1.18: +0 -44 lines
Diff to previous 1.18 (colored)

remove ssl2 support even more completely.
in the process, always include ssl3 and tls1, we don't need config options
for them. when the time comes to expire ssl3, it will be with an ax.
checked by miod

Revision 1.18 / (download) - annotate - [select for diffs], Tue Apr 15 19:42:56 2014 UTC (10 years, 1 month ago) by tedu
Branch: MAIN
Changes since 1.17: +0 -11 lines
Diff to previous 1.17 (colored)

remove FIPS mode support. people who require FIPS can buy something that
meets their needs, but dumping it in here only penalizes the rest of us.
ok miod

Revision 1.17 / (download) - annotate - [select for diffs], Mon Apr 14 17:45:38 2014 UTC (10 years, 1 month ago) by deraadt
Branch: MAIN
Changes since 1.16: +0 -2 lines
Diff to previous 1.16 (colored)

So the OpenSSL codebase does "get the time, add it as a random seed"
in a bunch of places inside the TLS engine, to try to keep entropy high.
I wonder if their moto is "If you can't solve a problem, at least try
to do it badly".
ok miod

Revision 1.16 / (download) - annotate - [select for diffs], Mon Apr 14 15:15:33 2014 UTC (10 years, 1 month ago) by jsing
Branch: MAIN
Changes since 1.15: +258 -302 lines
Diff to previous 1.15 (colored)

First pass at applying KNF to the OpenSSL code, which almost makes it
readable. This pass is whitespace only and can readily be verified using
tr and md5.

Revision 1.15 / (download) - annotate - [select for diffs], Sun Apr 13 21:11:19 2014 UTC (10 years, 2 months ago) by mpi
Branch: MAIN
Changes since 1.14: +1 -1 lines
Diff to previous 1.14 (colored)

Do not include "e_os.h" anymore.  Simply pull in the necessary headers.

ok miod@, deraadt@

Revision 1.14 / (download) - annotate - [select for diffs], Sat Oct 13 21:25:14 2012 UTC (11 years, 8 months ago) by djm
Branch: MAIN
Changes since 1.13: +48 -4 lines
Diff to previous 1.13 (colored)

resolve conflicts

Revision 1.1.1.10 / (download) - annotate - [select for diffs] (vendor branch), Sat Oct 13 21:23:49 2012 UTC (11 years, 8 months ago) by djm
Changes since 1.1.1.9: +48 -4 lines
Diff to previous 1.1.1.9 (colored)

import OpenSSL-1.0.1c

Revision 1.13 / (download) - annotate - [select for diffs], Fri Oct 1 22:59:00 2010 UTC (13 years, 8 months ago) by djm
Branch: MAIN
Changes since 1.12: +27 -14 lines
Diff to previous 1.12 (colored)

resolve conflicts, fix local changes

Revision 1.1.1.9 / (download) - annotate - [select for diffs] (vendor branch), Fri Oct 1 22:54:16 2010 UTC (13 years, 8 months ago) by djm
Changes since 1.1.1.8: +27 -14 lines
Diff to previous 1.1.1.8 (colored)

import OpenSSL-1.0.0a

Revision 1.1.1.8 / (download) - annotate - [select for diffs] (vendor branch), Fri Jan 9 12:14:06 2009 UTC (15 years, 5 months ago) by djm
Changes since 1.1.1.7: +9 -0 lines
Diff to previous 1.1.1.7 (colored)

import openssl-0.9.8j

Revision 1.12 / (download) - annotate - [select for diffs], Mon Jan 5 21:36:39 2009 UTC (15 years, 5 months ago) by djm
Branch: MAIN
Changes since 1.11: +9 -0 lines
Diff to previous 1.11 (colored)

update to openssl-0.9.8i; tested by several, especially krw@

Revision 1.11 / (download) - annotate - [select for diffs], Sat Sep 6 12:17:53 2008 UTC (15 years, 9 months ago) by djm
Branch: MAIN
Changes since 1.10: +4 -32 lines
Diff to previous 1.10 (colored)

resolve conflicts

Revision 1.1.1.7 / (download) - annotate - [select for diffs] (vendor branch), Sat Sep 6 12:15:51 2008 UTC (15 years, 9 months ago) by djm
Changes since 1.1.1.6: +4 -32 lines
Diff to previous 1.1.1.6 (colored)

import of OpenSSL 0.9.8h

Revision 1.10 / (download) - annotate - [select for diffs], Tue Jun 27 05:07:03 2006 UTC (17 years, 11 months ago) by djm
Branch: MAIN
Changes since 1.9: +1 -4 lines
Diff to previous 1.9 (colored)

resolve conflicts

Revision 1.1.1.6 / (download) - annotate - [select for diffs] (vendor branch), Tue Jun 27 05:05:39 2006 UTC (17 years, 11 months ago) by djm
Changes since 1.1.1.5: +2 -7 lines
Diff to previous 1.1.1.5 (colored)

import of openssl-0.9.7j

Revision 1.8.2.1 / (download) - annotate - [select for diffs], Tue Nov 1 01:01:12 2005 UTC (18 years, 7 months ago) by brad
Changes since 1.8: +1 -3 lines
Diff to previous 1.8 (colored) next main 1.9 (colored)

MFC:
Fix by markus@

fix potential SSL 2.0 rollback (http://www.openssl.org//news/secadv_20051011.txt)
from http://www.openssl.org/news/patch-CAN-2005-2969.txt

Revision 1.7.8.1 / (download) - annotate - [select for diffs], Wed Oct 12 21:39:07 2005 UTC (18 years, 8 months ago) by brad
Changes since 1.7: +1 -3 lines
Diff to previous 1.7 (colored) next main 1.8 (colored)

MFC:
Fix by markus@

fix potential SSL 2.0 rollback (http://www.openssl.org//news/secadv_20051011.txt)
from http://www.openssl.org/news/patch-CAN-2005-2969.txt

Revision 1.7.6.1 / (download) - annotate - [select for diffs], Wed Oct 12 18:48:45 2005 UTC (18 years, 8 months ago) by brad
Changes since 1.7: +1 -3 lines
Diff to previous 1.7 (colored) next main 1.8 (colored)

MFC:
Fix by markus@

fix potential SSL 2.0 rollback (http://www.openssl.org//news/secadv_20051011.txt)
from http://www.openssl.org/news/patch-CAN-2005-2969.txt

Revision 1.9 / (download) - annotate - [select for diffs], Tue Oct 11 14:49:22 2005 UTC (18 years, 8 months ago) by markus
Branch: MAIN
Changes since 1.8: +1 -3 lines
Diff to previous 1.8 (colored)

fix potential SSL 2.0 rollback (http://www.openssl.org//news/secadv_20051011.txt)
from http://www.openssl.org/news/patch-CAN-2005-2969.txt

Revision 1.8 / (download) - annotate - [select for diffs], Fri Apr 29 05:39:31 2005 UTC (19 years, 1 month ago) by djm
Branch: MAIN
Changes since 1.7: +9 -0 lines
Diff to previous 1.7 (colored)

resolve conflicts

Revision 1.1.1.5 / (download) - annotate - [select for diffs] (vendor branch), Fri Apr 29 05:37:27 2005 UTC (19 years, 1 month ago) by djm
Changes since 1.1.1.4: +9 -0 lines
Diff to previous 1.1.1.4 (colored)

import of openssl-0.9.7g; tested on platforms from alpha to zaurus, ok deraadt@

Revision 1.7 / (download) - annotate - [select for diffs], Mon May 12 02:18:39 2003 UTC (21 years, 1 month ago) by markus
Branch: MAIN
Changes since 1.6: +13 -6 lines
Diff to previous 1.6 (colored)

merge 0.9.7b with local changes; crank majors for libssl/libcrypto

Revision 1.1.1.4 / (download) - annotate - [select for diffs] (vendor branch), Sun May 11 21:36:37 2003 UTC (21 years, 1 month ago) by markus
Changes since 1.1.1.3: +13 -6 lines
Diff to previous 1.1.1.3 (colored)

import 0.9.7b (without idea and rc5)

Revision 1.6 / (download) - annotate - [select for diffs], Tue Sep 10 16:31:57 2002 UTC (21 years, 9 months ago) by markus
Branch: MAIN
Changes since 1.5: +1 -1 lines
Diff to previous 1.5 (colored)

merge openssl-0.9.7-beta3, tested on vax by miod@

Revision 1.1.1.3 / (download) - annotate - [select for diffs] (vendor branch), Thu Sep 5 22:43:56 2002 UTC (21 years, 9 months ago) by markus
Changes since 1.1.1.2: +1 -1 lines
Diff to previous 1.1.1.2 (colored)

import openssl-0.9.7-beta3

Revision 1.1.1.2 / (download) - annotate - [select for diffs] (vendor branch), Thu Sep 5 12:51:32 2002 UTC (21 years, 9 months ago) by markus
Changes since 1.1.1.1: +215 -125 lines
Diff to previous 1.1.1.1 (colored)

import openssl-0.9.7-beta1

Revision 1.5 / (download) - annotate - [select for diffs], Wed May 15 02:29:20 2002 UTC (22 years, 1 month ago) by beck
Branch: MAIN
Changes since 1.4: +97 -84 lines
Diff to previous 1.4 (colored)

OpenSSL 0.9.7 stable 2002 05 08 merge

Revision 1.4 / (download) - annotate - [select for diffs], Fri Dec 15 02:58:36 2000 UTC (23 years, 6 months ago) by beck
Branch: MAIN
Changes since 1.3: +20 -12 lines
Diff to previous 1.3 (colored)

openssl-engine-0.9.6 merge

Revision 1.3 / (download) - annotate - [select for diffs], Sun Mar 19 11:13:27 2000 UTC (24 years, 2 months ago) by beck
Branch: MAIN
Changes since 1.2: +101 -36 lines
Diff to previous 1.2 (colored)

OpenSSL 0.9.5 merge

*warning* this bumps shared lib minors for libssl and libcrypto from 2.1 to 2.2
if you are using the ssl26 packages for ssh and other things to work you will
need to get new ones (see ~beck/libsslsnap/<arch>) on cvs or ~beck/src-patent.tar.gz on cvs

Revision 1.2 / (download) - annotate - [select for diffs], Wed Sep 29 04:37:26 1999 UTC (24 years, 8 months ago) by beck
Branch: MAIN
Changes since 1.1: +38 -34 lines
Diff to previous 1.1 (colored)

OpenSSL 0.9.4 merge

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Mon Oct 5 20:13:11 1998 UTC (25 years, 8 months ago) by ryker
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored)

Import of SSLeay-0.9.0b with RSA and IDEA stubbed + OpenBSD build
functionality for shared libs.

Note that routines such as sslv2_init and friends that use RSA will
not work due to lack of RSA in this library.

Needs documentation and help from ports for easy upgrade to full
functionality where legally possible.

Revision 1.1 / (download) - annotate - [select for diffs], Mon Oct 5 20:13:11 1998 UTC (25 years, 8 months ago) by ryker
Branch: MAIN

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.