OpenBSD CVS

CVS log for src/usr.bin/ssh/ssh/Makefile


[BACK] Up to [local] / src / usr.bin / ssh / ssh

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.81 / (download) - annotate - [select for diffs], Sat Jan 25 23:02:14 2020 UTC (4 years, 4 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4, OPENBSD_7_3_BASE, OPENBSD_7_3, OPENBSD_7_2_BASE, OPENBSD_7_2, OPENBSD_7_1_BASE, OPENBSD_7_1, OPENBSD_7_0_BASE, OPENBSD_7_0, OPENBSD_6_9_BASE, OPENBSD_6_9, OPENBSD_6_8_BASE, OPENBSD_6_8, OPENBSD_6_7_BASE, OPENBSD_6_7, HEAD
Changes since 1.80: +2 -3 lines
Diff to previous 1.80 (colored)

factor out reading/writing sshbufs to dedicated functions;
feedback and ok markus@

Revision 1.80 / (download) - annotate - [select for diffs], Thu Jan 23 10:24:30 2020 UTC (4 years, 4 months ago) by dtucker
Branch: MAIN
Changes since 1.79: +8 -3 lines
Diff to previous 1.79 (colored)

Make zlib optional.  This adds a "ZLIB" build time option that allows
building without zlib compression and associated options.  With feedback
from markus@, ok djm@

Revision 1.79 / (download) - annotate - [select for diffs], Fri Dec 13 19:09:10 2019 UTC (4 years, 5 months ago) by djm
Branch: MAIN
Changes since 1.78: +4 -6 lines
Diff to previous 1.78 (colored)

use ssh-sk-helper for all security key signing operations

This extracts and refactors the client interface for ssh-sk-helper
from ssh-agent and generalises it for use by the other programs.
This means that most OpenSSH tools no longer need to link against
libfido2 or directly interact with /dev/uhid*

requested by, feedback and ok markus@

Revision 1.78 / (download) - annotate - [select for diffs], Thu Nov 14 21:27:30 2019 UTC (4 years, 6 months ago) by djm
Branch: MAIN
Changes since 1.77: +4 -1 lines
Diff to previous 1.77 (colored)

directly support U2F/FIDO2 security keys in OpenSSH by linking
against the (previously external) USB HID middleware. The dlopen()
capability still exists for alternate middlewares, e.g. for
Bluetooth, NFC and test/debugging.

Revision 1.77 / (download) - annotate - [select for diffs], Thu Oct 31 21:23:19 2019 UTC (4 years, 7 months ago) by djm
Branch: MAIN
Changes since 1.76: +2 -3 lines
Diff to previous 1.76 (colored)

Refactor signing - use sshkey_sign for everything, including the new
U2F signatures.

Don't use sshsk_ecdsa_sign() directly, instead make it reachable via
sshkey_sign() like all other signature operations. This means that
we need to add a provider argument to sshkey_sign(), so most of this
change is mechanically adding that.

Suggested by / ok markus@

Revision 1.76 / (download) - annotate - [select for diffs], Thu Oct 31 21:18:28 2019 UTC (4 years, 7 months ago) by djm
Branch: MAIN
Changes since 1.75: +3 -2 lines
Diff to previous 1.75 (colored)

ssh client support for U2F/FIDO keys

Revision 1.75 / (download) - annotate - [select for diffs], Wed Jul 25 17:12:35 2018 UTC (5 years, 10 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_6_6_BASE, OPENBSD_6_6, OPENBSD_6_5_BASE, OPENBSD_6_5, OPENBSD_6_4_BASE, OPENBSD_6_4
Changes since 1.74: +1 -4 lines
Diff to previous 1.74 (colored)

Don't redefine Makefile choices which come correct from bsd.*.mk
ok markus

Revision 1.74 / (download) - annotate - [select for diffs], Wed Jul 11 18:53:29 2018 UTC (5 years, 10 months ago) by markus
Branch: MAIN
Changes since 1.73: +2 -2 lines
Diff to previous 1.73 (colored)

remove legacy key emulation layer; ok djm@

Revision 1.73 / (download) - annotate - [select for diffs], Mon Jul 9 21:56:06 2018 UTC (5 years, 10 months ago) by markus
Branch: MAIN
Changes since 1.72: +2 -2 lines
Diff to previous 1.72 (colored)

remove legacy buffer API emulation layer; ok djm@

Revision 1.72 / (download) - annotate - [select for diffs], Mon Jan 8 15:37:38 2018 UTC (6 years, 4 months ago) by markus
Branch: MAIN
CVS Tags: OPENBSD_6_3_BASE, OPENBSD_6_3
Changes since 1.71: +9 -18 lines
Diff to previous 1.71 (colored)

group shared source files (e.g. SRCS_KEX) and allow compilation w/o OPENSSL
ok djm@

Revision 1.71 / (download) - annotate - [select for diffs], Mon Jan 8 15:15:17 2018 UTC (6 years, 4 months ago) by markus
Branch: MAIN
Changes since 1.70: +5 -5 lines
Diff to previous 1.70 (colored)

only ssh-keygen needs uuencode.o; only scp/sftp use progressmeter.o

Revision 1.70 / (download) - annotate - [select for diffs], Thu Dec 14 21:07:39 2017 UTC (6 years, 5 months ago) by naddy
Branch: MAIN
Changes since 1.69: +2 -2 lines
Diff to previous 1.69 (colored)

Replace ED25519's private SHA-512 implementation with a call to the
regular digest code.  This speeds up compilation considerably.
ok markus@

Revision 1.69 / (download) - annotate - [select for diffs], Tue Dec 12 15:06:12 2017 UTC (6 years, 5 months ago) by naddy
Branch: MAIN
Changes since 1.68: +1 -10 lines
Diff to previous 1.68 (colored)

Create a persistent umac128.c source file: #define the output size and
the name of the entry points for UMAC-128 before including umac.c.
Idea from FreeBSD.
ok dtucker@

Revision 1.68 / (download) - annotate - [select for diffs], Sun Dec 10 19:37:57 2017 UTC (6 years, 5 months ago) by deraadt
Branch: MAIN
Changes since 1.67: +25 -5 lines
Diff to previous 1.67 (colored)

ssh/lib hasn't worked towards our code-sharing goals for a quit while,
perhaps it is too verbose?  Change each */Makefile to specifying exactly
what sources that program requires, compiling it seperate.  Maybe we'll
iterate by sorting those into seperatable chunks, splitting up files
which contain common code + server/client specific code, or whatnot. But
this isn't one step, or we'd have done it a long time ago..
ok dtucker markus djm

Revision 1.67 / (download) - annotate - [select for diffs], Sun Apr 30 23:17:37 2017 UTC (7 years, 1 month ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_6_2_BASE, OPENBSD_6_2
Changes since 1.66: +1 -5 lines
Diff to previous 1.66 (colored)

remove SSH1 make flag and associated files
ok markus@

Revision 1.66 / (download) - annotate - [select for diffs], Thu Jan 14 16:17:40 2016 UTC (8 years, 4 months ago) by markus
Branch: MAIN
CVS Tags: OPENBSD_6_1_BASE, OPENBSD_6_1, OPENBSD_6_0_BASE, OPENBSD_6_0, OPENBSD_5_9_BASE, OPENBSD_5_9
Changes since 1.65: +2 -3 lines
Diff to previous 1.65 (colored)

remove roaming support; ok djm@

Revision 1.65 / (download) - annotate - [select for diffs], Sun Nov 8 22:08:38 2015 UTC (8 years, 6 months ago) by jmc
Branch: MAIN
Changes since 1.64: +1 -3 lines
Diff to previous 1.64 (colored)

remove slogin links; ok deraadt markus djm

Revision 1.64 / (download) - annotate - [select for diffs], Tue Mar 3 21:21:13 2015 UTC (9 years, 3 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_5_8_BASE, OPENBSD_5_8, OPENBSD_5_7_BASE, OPENBSD_5_7
Changes since 1.63: +2 -2 lines
Diff to previous 1.63 (colored)

add SSH1 Makefile knob to make it easier to build without SSH1 support;
ok markus@

Revision 1.63 / (download) - annotate - [select for diffs], Tue Apr 29 18:01:49 2014 UTC (10 years, 1 month ago) by markus
Branch: MAIN
CVS Tags: OPENBSD_5_6_BASE, OPENBSD_5_6
Changes since 1.62: +14 -4 lines
Diff to previous 1.62 (colored)

make compiling against OpenSSL optional (make OPENSSL=no);
reduces algorithms to curve25519, aes-ctr, chacha, ed25519;
allows us to explore further options; with and ok djm

Revision 1.62 / (download) - annotate - [select for diffs], Sat Jul 20 01:55:13 2013 UTC (10 years, 10 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_5_5_BASE, OPENBSD_5_5, OPENBSD_5_4_BASE, OPENBSD_5_4
Changes since 1.61: +3 -2 lines
Diff to previous 1.61 (colored)

fix kerberos/GSSAPI deprecation warnings and linking; "looks okay" millert@

Revision 1.61 / (download) - annotate - [select for diffs], Tue Jul 2 13:32:38 2013 UTC (10 years, 11 months ago) by markus
Branch: MAIN
Changes since 1.60: +2 -2 lines
Diff to previous 1.60 (colored)

add missing library dependencies

Revision 1.60 / (download) - annotate - [select for diffs], Wed Jun 19 05:27:06 2013 UTC (10 years, 11 months ago) by deraadt
Branch: MAIN
Changes since 1.59: +2 -1 lines
Diff to previous 1.59 (colored)

stop doing kerberos in ssh and sshd
the code bloat makes that no longer trustworthy functionality
ok guenther

Revision 1.59 / (download) - annotate - [select for diffs], Tue Jun 18 20:27:20 2013 UTC (10 years, 11 months ago) by miod
Branch: MAIN
Changes since 1.58: +3 -3 lines
Diff to previous 1.58 (colored)

Shuffle library link order to appease the static arch deities.

Revision 1.58 / (download) - annotate - [select for diffs], Mon Jun 17 19:23:33 2013 UTC (10 years, 11 months ago) by robert
Branch: MAIN
Changes since 1.57: +3 -2 lines
Diff to previous 1.57 (colored)

link to the new kerberos libraries

Revision 1.57 / (download) - annotate - [select for diffs], Thu May 16 09:12:31 2013 UTC (11 years ago) by dtucker
Branch: MAIN
Changes since 1.56: +2 -2 lines
Diff to previous 1.56 (colored)

switch RekeyLimit traffic volume parsing to scan_scaled.  ok djm@

Revision 1.56 / (download) - annotate - [select for diffs], Fri Aug 24 19:50:19 2012 UTC (11 years, 9 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_5_3_BASE, OPENBSD_5_3
Changes since 1.55: +2 -2 lines
Diff to previous 1.55 (colored)

comment about bsd.own.mk is now false; ok markus

Revision 1.55 / (download) - annotate - [select for diffs], Wed Oct 13 08:14:22 2010 UTC (13 years, 7 months ago) by jsg
Branch: MAIN
CVS Tags: OPENBSD_5_2_BASE, OPENBSD_5_2, OPENBSD_5_1_BASE, OPENBSD_5_1, OPENBSD_5_0_BASE, OPENBSD_5_0, OPENBSD_4_9_BASE, OPENBSD_4_9
Changes since 1.54: +3 -3 lines
Diff to previous 1.54 (colored)

The heimdal code switched to using DES from libcrypto when 0.7.2
was imported over four years ago, so we don't need to link libdes
for kerberos anymore.

ok mikeb@ deraadt@

Revision 1.54 / (download) - annotate - [select for diffs], Sat Oct 24 11:22:37 2009 UTC (14 years, 7 months ago) by andreas
Branch: MAIN
CVS Tags: OPENBSD_4_8_BASE, OPENBSD_4_8, OPENBSD_4_7_BASE, OPENBSD_4_7
Changes since 1.53: +2 -2 lines
Diff to previous 1.53 (colored)

Do the actual suspend/resume in the client. This won't be useful until
the server side supports roaming.
Most code from Martin Forssen, maf at appgate dot com. Some changes by
me and markus@
ok markus@

Revision 1.53 / (download) - annotate - [select for diffs], Thu May 28 16:50:16 2009 UTC (15 years ago) by andreas
Branch: MAIN
CVS Tags: OPENBSD_4_6_BASE, OPENBSD_4_6
Changes since 1.52: +3 -2 lines
Diff to previous 1.52 (colored)

Keep track of number of bytes read and written. Needed for upcoming
changes. Most code from Martin Forssen, maf at appgate dot com.
ok markus@

Revision 1.52 / (download) - annotate - [select for diffs], Fri May 9 14:18:45 2008 UTC (16 years, 1 month ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_4_5_BASE, OPENBSD_4_5, OPENBSD_4_4_BASE, OPENBSD_4_4
Changes since 1.51: +2 -2 lines
Diff to previous 1.51 (colored)

tidy up session multiplexing code, moving it into its own file and
making the function names more consistent - making ssh.c and
clientloop.c a fair bit more readable.

ok markus@

Revision 1.42.4.2 / (download) - annotate - [select for diffs], Thu Mar 4 18:18:17 2004 UTC (20 years, 3 months ago) by brad
Branch: OPENBSD_3_3
Changes since 1.42.4.1: +2 -2 lines
Diff to previous 1.42.4.1 (colored) to branchpoint 1.42 (colored) next main 1.43 (colored)

upgrade to OpenSSH 3.8upgrade to OpenSSH 3.8upgrade to OpenSSH 3.8

Revision 1.50.2.1 / (download) - annotate - [select for diffs], Sat Feb 28 03:51:35 2004 UTC (20 years, 3 months ago) by brad
Branch: OPENBSD_3_4
Changes since 1.50: +2 -2 lines
Diff to previous 1.50 (colored) next main 1.51 (colored)

upgrade to OpenSSH 3.8

Revision 1.51 / (download) - annotate - [select for diffs], Fri Nov 21 11:57:03 2003 UTC (20 years, 6 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_4_3_BASE, OPENBSD_4_3, OPENBSD_4_2_BASE, OPENBSD_4_2, OPENBSD_4_1_BASE, OPENBSD_4_1, OPENBSD_4_0_BASE, OPENBSD_4_0, OPENBSD_3_9_BASE, OPENBSD_3_9, OPENBSD_3_8_BASE, OPENBSD_3_8, OPENBSD_3_7_BASE, OPENBSD_3_7, OPENBSD_3_6_BASE, OPENBSD_3_6, OPENBSD_3_5_BASE, OPENBSD_3_5
Changes since 1.50: +2 -2 lines
Diff to previous 1.50 (colored)

unexpand and delete whitespace at EOL; ok markus@

Revision 1.42.2.1 / (download) - annotate - [select for diffs], Tue Sep 16 21:20:30 2003 UTC (20 years, 8 months ago) by brad
Branch: OPENBSD_3_2
Changes since 1.42: +10 -18 lines
Diff to previous 1.42 (colored) next main 1.43 (colored)

upgrade to OpenSSH 3.7

Revision 1.42.4.1 / (download) - annotate - [select for diffs], Tue Sep 16 20:50:44 2003 UTC (20 years, 8 months ago) by brad
Branch: OPENBSD_3_3
Changes since 1.42: +10 -18 lines
Diff to previous 1.42 (colored)

upgrade to OpenSSH 3.7

Revision 1.50 / (download) - annotate - [select for diffs], Thu Aug 28 07:49:13 2003 UTC (20 years, 9 months ago) by markus
Branch: MAIN
CVS Tags: OPENBSD_3_4_BASE
Branch point for: OPENBSD_3_4
Changes since 1.49: +4 -4 lines
Diff to previous 1.49 (colored)

don't like libgss/krb5 twice, fixes non-KERBEROS builds; pmbas@samhaim.org

Revision 1.49 / (download) - annotate - [select for diffs], Sun Aug 24 18:17:36 2003 UTC (20 years, 9 months ago) by deraadt
Branch: MAIN
Changes since 1.48: +9 -11 lines
Diff to previous 1.48 (colored)

re-organize Makefiles so that static builds actually work

Revision 1.48 / (download) - annotate - [select for diffs], Fri Aug 22 10:56:09 2003 UTC (20 years, 9 months ago) by markus
Branch: MAIN
Changes since 1.47: +8 -3 lines
Diff to previous 1.47 (colored)

support GSS API user authentication; patches from Simon Wilkinson,
stripped down and tested by Jakob and myself.

Revision 1.47 / (download) - annotate - [select for diffs], Wed Jul 16 19:10:13 2003 UTC (20 years, 10 months ago) by deraadt
Branch: MAIN
Changes since 1.46: +3 -3 lines
Diff to previous 1.46 (colored)

some minor DPADD changes

Revision 1.46 / (download) - annotate - [select for diffs], Tue Jul 15 19:02:20 2003 UTC (20 years, 10 months ago) by deraadt
Branch: MAIN
Changes since 1.45: +3 -3 lines
Diff to previous 1.45 (colored)

stop using libcom_err, it is built into krb5

Revision 1.45 / (download) - annotate - [select for diffs], Sat May 17 01:31:21 2003 UTC (21 years ago) by hin
Branch: MAIN
Changes since 1.44: +2 -2 lines
Diff to previous 1.44 (colored)

Don't link with unneeded kerberos libraries

Revision 1.44 / (download) - annotate - [select for diffs], Thu Apr 10 00:17:52 2003 UTC (21 years, 2 months ago) by pvalchev
Branch: MAIN
Changes since 1.43: +2 -2 lines
Diff to previous 1.43 (colored)

unbreak linking on elf - stupid kerberos

Revision 1.43 / (download) - annotate - [select for diffs], Wed Apr 9 08:24:24 2003 UTC (21 years, 2 months ago) by hin
Branch: MAIN
Changes since 1.42: +1 -12 lines
Diff to previous 1.42 (colored)

Disable Kerberos 4 support.

ok markus@

Revision 1.37.2.3 / (download) - annotate - [select for diffs], Wed Jun 26 15:30:39 2002 UTC (21 years, 11 months ago) by jason
Branch: OPENBSD_3_1
Changes since 1.37.2.2: +3 -3 lines
Diff to previous 1.37.2.2 (colored) to branchpoint 1.37 (colored) next main 1.38 (colored)

Pull in OpenSSH-3.4

Revision 1.36.2.3 / (download) - annotate - [select for diffs], Sat Jun 22 07:24:41 2002 UTC (21 years, 11 months ago) by miod
Branch: OPENBSD_3_0
Changes since 1.36.2.2: +3 -3 lines
Diff to previous 1.36.2.2 (colored) to branchpoint 1.36 (colored) next main 1.37 (colored)

Update OpenSSH 3.3, files missed in previous commit.

Revision 1.42 / (download) - annotate - [select for diffs], Thu Jun 20 19:56:07 2002 UTC (21 years, 11 months ago) by stevesk
Branch: MAIN
CVS Tags: OPENBSD_3_3_BASE, OPENBSD_3_2_BASE
Branch point for: OPENBSD_3_3, OPENBSD_3_2
Changes since 1.41: +2 -2 lines
Diff to previous 1.41 (colored)

move configuration file options from ssh.1/sshd.8 to
ssh_config.5/sshd_config.5; ok deraadt@ millert@

Revision 1.30.2.3 / (download) - annotate - [select for diffs], Sun Jun 2 22:56:43 2002 UTC (22 years ago) by miod
Branch: OPENBSD_2_9
Changes since 1.30.2.2: +4 -4 lines
Diff to previous 1.30.2.2 (colored) to branchpoint 1.30 (colored) next main 1.31 (colored)

Upgrade to OpenSSH 3.2.3.

Except for improbable compilation error fixes, this should be the last
commit made to the 2.9-STABLE branche. Have fun upgrading.

Revision 1.37.2.2 / (download) - annotate - [select for diffs], Sat May 18 04:50:38 2002 UTC (22 years ago) by jason
Branch: OPENBSD_3_1
Changes since 1.37.2.1: +0 -0 lines
Diff to previous 1.37.2.1 (colored) to branchpoint 1.37 (colored)

Update to OpenSSH-3.2.3

Revision 1.37.2.1 / (download) - annotate - [select for diffs], Sat May 18 04:12:11 2002 UTC (22 years ago) by jason
Branch: OPENBSD_3_1
Changes since 1.37: +4 -4 lines
Diff to previous 1.37 (colored)

Update to OpenSSH-3.2.2

Revision 1.36.2.2 / (download) - annotate - [select for diffs], Fri May 17 00:03:38 2002 UTC (22 years ago) by miod
Branch: OPENBSD_3_0
Changes since 1.36.2.1: +4 -4 lines
Diff to previous 1.36.2.1 (colored) to branchpoint 1.36 (colored)

Update OpenSSH to version 3.2.2.

Revision 1.41 / (download) - annotate - [select for diffs], Wed May 15 21:56:39 2002 UTC (22 years ago) by markus
Branch: MAIN
Changes since 1.40: +2 -2 lines
Diff to previous 1.40 (colored)

re-enable privsep and disable setuid for post-3.2.2

Revision 1.40 / (download) - annotate - [select for diffs], Wed May 15 21:02:53 2002 UTC (22 years ago) by markus
Branch: MAIN
Changes since 1.39: +2 -2 lines
Diff to previous 1.39 (colored)

disable privsep and enable setuid for the 3.2.2 release

Revision 1.39 / (download) - annotate - [select for diffs], Sat May 11 00:20:20 2002 UTC (22 years, 1 month ago) by espie
Branch: MAIN
Changes since 1.38: +4 -4 lines
Diff to previous 1.38 (colored)

Add missing libraries to bsd.prog.mk (mostly kerberosV)
Use them in DPADD throughout the tree.
Fix a few mispells (LIBMATH -> LIBM...)
Wipe obsolete lib (LIBRESOLV)
Sort added missing libraries, move obsolete stuff apart.
Synch documentation in bsd.README

ok deraadt@

Revision 1.38 / (download) - annotate - [select for diffs], Sat May 4 03:00:40 2002 UTC (22 years, 1 month ago) by deraadt
Branch: MAIN
Changes since 1.37: +2 -2 lines
Diff to previous 1.37 (colored)

make ssh not setuid.  We will solve the issues relating to it being setuid later.  Groovy, ok?

Revision 1.30.2.2 / (download) - annotate - [select for diffs], Sat Mar 9 00:24:20 2002 UTC (22 years, 3 months ago) by miod
Branch: OPENBSD_2_9
Changes since 1.30.2.1: +2 -2 lines
Diff to previous 1.30.2.1 (colored) to branchpoint 1.30 (colored)

Merge OpenSSH 3.1, keeping /etc as configuration files directory
(i.e. OpenSSH 3.1 + openbsd29_3.1.patch)

Revision 1.26.2.6 / (download) - annotate - [select for diffs], Fri Mar 8 17:04:44 2002 UTC (22 years, 3 months ago) by brad
Branch: OPENBSD_2_8
Changes since 1.26.2.5: +2 -2 lines
Diff to previous 1.26.2.5 (colored) to branchpoint 1.26 (colored) next main 1.27 (colored)

Merge OpenSSH 3.1.

Revision 1.36.2.1 / (download) - annotate - [select for diffs], Thu Mar 7 17:37:48 2002 UTC (22 years, 3 months ago) by jason
Branch: OPENBSD_3_0
Changes since 1.36: +2 -2 lines
Diff to previous 1.36 (colored)

Update to OpenSSH-3.1 on 3.0-stable branch

Revision 1.37 / (download) - annotate - [select for diffs], Tue Mar 5 00:49:51 2002 UTC (22 years, 3 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_3_1_BASE
Branch point for: OPENBSD_3_1
Changes since 1.36: +2 -2 lines
Diff to previous 1.36 (colored)

and -ldes here too

Revision 1.30.2.1 / (download) - annotate - [select for diffs], Thu Sep 27 19:03:56 2001 UTC (22 years, 8 months ago) by jason
Branch: OPENBSD_2_9
Changes since 1.30: +7 -1 lines
Diff to previous 1.30 (colored)

Pull in OpenSSH-2.9.9

Revision 1.26.2.5 / (download) - annotate - [select for diffs], Thu Sep 27 00:16:00 2001 UTC (22 years, 8 months ago) by miod
Branch: OPENBSD_2_8
Changes since 1.26.2.4: +7 -1 lines
Diff to previous 1.26.2.4 (colored) to branchpoint 1.26 (colored)

Pull in OpenSSH 2.9.9 to the 2.8 branch.

Revision 1.36 / (download) - annotate - [select for diffs], Mon Sep 10 22:44:47 2001 UTC (22 years, 9 months ago) by jason
Branch: MAIN
CVS Tags: OPENBSD_3_0_BASE
Branch point for: OPENBSD_3_0
Changes since 1.35: +7 -7 lines
Diff to previous 1.35 (colored)

link k5 before k4 (new binutils is more picky than old ld)

Revision 1.35 / (download) - annotate - [select for diffs], Thu Jun 28 02:32:32 2001 UTC (22 years, 11 months ago) by hin
Branch: MAIN
Changes since 1.34: +2 -2 lines
Diff to previous 1.34 (colored)

Link with libcom_err for kerberos5

Revision 1.34 / (download) - annotate - [select for diffs], Wed Jun 27 19:29:15 2001 UTC (22 years, 11 months ago) by markus
Branch: MAIN
Changes since 1.33: +1 -3 lines
Diff to previous 1.33 (colored)

move -lsectok to Makefile.inc for now

Revision 1.33 / (download) - annotate - [select for diffs], Tue Jun 26 20:14:12 2001 UTC (22 years, 11 months ago) by markus
Branch: MAIN
Changes since 1.32: +3 -1 lines
Diff to previous 1.32 (colored)

add smartcard support to the client, too (now you can use both
the agent and the client).

Revision 1.32 / (download) - annotate - [select for diffs], Tue Jun 26 17:52:41 2001 UTC (22 years, 11 months ago) by dugsong
Branch: MAIN
Changes since 1.31: +7 -6 lines
Diff to previous 1.31 (colored)

only build Kerberos v5 support with KERBEROS5=yes

Revision 1.31 / (download) - annotate - [select for diffs], Tue Jun 26 16:15:26 2001 UTC (22 years, 11 months ago) by dugsong
Branch: MAIN
Changes since 1.30: +6 -1 lines
Diff to previous 1.30 (colored)

Kerberos v5 support for SSH1, mostly from Assar Westerlund <assar@freebsd.org> and Bjorn Gronvall <bg@sics.se>. markus@ ok

Revision 1.26.2.4 / (download) - annotate - [select for diffs], Mon May 7 21:09:40 2001 UTC (23 years, 1 month ago) by jason
Branch: OPENBSD_2_8
Changes since 1.26.2.3: +2 -2 lines
Diff to previous 1.26.2.3 (colored) to branchpoint 1.26 (colored)

Pull in OpenSSH-2.9 to 2.8 branch.

Revision 1.30 / (download) - annotate - [select for diffs], Sat Apr 14 16:33:20 2001 UTC (23 years, 1 month ago) by stevesk
Branch: MAIN
CVS Tags: OPENBSD_2_9_BASE
Branch point for: OPENBSD_2_9
Changes since 1.29: +2 -2 lines
Diff to previous 1.29 (colored)

protocol 2 tty modes support; ok markus@

Revision 1.26.2.3 / (download) - annotate - [select for diffs], Wed Mar 21 19:46:33 2001 UTC (23 years, 2 months ago) by jason
Branch: OPENBSD_2_8
Changes since 1.26.2.2: +4 -4 lines
Diff to previous 1.26.2.2 (colored) to branchpoint 1.26 (colored)

Pull in OpenSSH-2.5.2 for 2.8 branch.

Revision 1.24.2.4 / (download) - annotate - [select for diffs], Wed Mar 21 18:53:27 2001 UTC (23 years, 2 months ago) by jason
Branch: OPENBSD_2_7
Changes since 1.24.2.3: +4 -4 lines
Diff to previous 1.24.2.3 (colored) to branchpoint 1.24 (colored) next main 1.25 (colored)

Pull in OpenSSH-2.5.2 for 2.7 branch.

Revision 1.24.2.3 / (download) - annotate - [select for diffs], Mon Mar 12 15:44:19 2001 UTC (23 years, 3 months ago) by jason
Branch: OPENBSD_2_7
Changes since 1.24.2.2: +2 -0 lines
Diff to previous 1.24.2.2 (colored) to branchpoint 1.24 (colored)

OpenSSH-2.5.1 for 2.7 patch branch

Revision 1.29 / (download) - annotate - [select for diffs], Sun Mar 4 00:51:25 2001 UTC (23 years, 3 months ago) by markus
Branch: MAIN
Changes since 1.28: +3 -3 lines
Diff to previous 1.28 (colored)

don't link unused libs

Revision 1.28 / (download) - annotate - [select for diffs], Sat Mar 3 23:59:37 2001 UTC (23 years, 3 months ago) by markus
Branch: MAIN
Changes since 1.27: +2 -2 lines
Diff to previous 1.27 (colored)

log*.c -> log.c

Revision 1.26.2.2 / (download) - annotate - [select for diffs], Mon Feb 19 17:19:48 2001 UTC (23 years, 3 months ago) by jason
Branch: OPENBSD_2_8
Changes since 1.26.2.1: +0 -0 lines
Diff to previous 1.26.2.1 (colored) to branchpoint 1.26 (colored)

Pull in OpenSSH-2.5.1

Revision 1.26.2.1 / (download) - annotate - [select for diffs], Fri Feb 16 20:13:27 2001 UTC (23 years, 3 months ago) by jason
Branch: OPENBSD_2_8
Changes since 1.26: +2 -0 lines
Diff to previous 1.26 (colored)

Pull in OpenSSH 2.5.0

Revision 1.27 / (download) - annotate - [select for diffs], Mon Jan 29 01:58:21 2001 UTC (23 years, 4 months ago) by niklas
Branch: MAIN
Changes since 1.26: +2 -0 lines
Diff to previous 1.26 (colored)

$OpenBSD$

Revision 1.24.2.2 / (download) - annotate - [select for diffs], Wed Nov 8 21:27:41 2000 UTC (23 years, 7 months ago) by jason
Branch: OPENBSD_2_7
Changes since 1.24.2.1: +2 -2 lines
Diff to previous 1.24.2.1 (colored) to branchpoint 1.24 (colored)

openssh-2.3.0 for 2.7 patch branch

Revision 1.26 / (download) - annotate - [select for diffs], Sun Sep 3 18:41:19 2000 UTC (23 years, 9 months ago) by espie
Branch: MAIN
CVS Tags: OPENBSD_2_8_BASE
Branch point for: OPENBSD_2_8
Changes since 1.25: +2 -2 lines
Diff to previous 1.25 (colored)

Boring...  Add :L modifier to all tweakable variables tests.

Closes PR 1246

Revision 1.24.2.1 / (download) - annotate - [select for diffs], Fri Sep 1 18:13:24 2000 UTC (23 years, 9 months ago) by jason
Branch: OPENBSD_2_7
Changes since 1.24: +0 -5 lines
Diff to previous 1.24 (colored)

Pull in OpenSSH-2.2.0 to 2.7 patch branch

Revision 1.25 / (download) - annotate - [select for diffs], Thu Jun 29 18:35:47 2000 UTC (23 years, 11 months ago) by todd
Branch: MAIN
Changes since 1.24: +0 -5 lines
Diff to previous 1.24 (colored)

no longer needed; good riddance for static archs

Revision 1.24 / (download) - annotate - [select for diffs], Wed Apr 26 21:31:58 2000 UTC (24 years, 1 month ago) by markus
Branch: MAIN
CVS Tags: OPENBSD_2_7_BASE
Branch point for: OPENBSD_2_7
Changes since 1.23: +2 -1 lines
Diff to previous 1.23 (colored)

sync

Revision 1.23 / (download) - annotate - [select for diffs], Tue Mar 14 20:13:28 2000 UTC (24 years, 2 months ago) by deraadt
Branch: MAIN
Changes since 1.22: +1 -1 lines
Diff to previous 1.22 (colored)

support DESTDIR include fetching; dm

Revision 1.22 / (download) - annotate - [select for diffs], Mon Dec 6 21:47:12 1999 UTC (24 years, 6 months ago) by deraadt
Branch: MAIN
Changes since 1.21: +1 -1 lines
Diff to previous 1.21 (colored)

atomicio() via lib

Revision 1.21 / (download) - annotate - [select for diffs], Mon Dec 6 20:15:37 1999 UTC (24 years, 6 months ago) by deraadt
Branch: MAIN
Changes since 1.20: +1 -1 lines
Diff to previous 1.20 (colored)

move atomicio into it's own file.  wrap all socket write()s which were doing
write(sock, buf, len) != len, with atomicio() calls.

Revision 1.20 / (download) - annotate - [select for diffs], Thu Nov 18 01:52:33 1999 UTC (24 years, 6 months ago) by deraadt
Branch: MAIN
Changes since 1.19: +1 -1 lines
Diff to previous 1.19 (colored)

bad aaron

Revision 1.19 / (download) - annotate - [select for diffs], Thu Nov 18 00:36:59 1999 UTC (24 years, 6 months ago) by aaron
Branch: MAIN
Changes since 1.18: +1 -1 lines
Diff to previous 1.18 (colored)

Add MLINK for openssh(1).

Revision 1.18 / (download) - annotate - [select for diffs], Mon Oct 25 20:27:27 1999 UTC (24 years, 7 months ago) by markus
Branch: MAIN
Changes since 1.17: +1 -9 lines
Diff to previous 1.17 (colored)

move common files to ./lib and link libssh.a, tested with and w/o obj

Revision 1.17 / (download) - annotate - [select for diffs], Sat Oct 16 20:47:14 1999 UTC (24 years, 7 months ago) by markus
Branch: MAIN
CVS Tags: OPENBSD_2_6_BASE, OPENBSD_2_6
Changes since 1.16: +2 -1 lines
Diff to previous 1.16 (colored)

support for SSH protocol 1.5 which is poorly documented, the RFC.troff lies.
interops (x11,agent,etc) with 1.2.27 and protocol 1.3

Revision 1.16 / (download) - annotate - [select for diffs], Thu Oct 7 05:10:24 1999 UTC (24 years, 8 months ago) by deraadt
Branch: MAIN
Changes since 1.15: +8 -1 lines
Diff to previous 1.15 (colored)

on static machines, install these as mode 0

Revision 1.15 / (download) - annotate - [select for diffs], Wed Oct 6 22:24:55 1999 UTC (24 years, 8 months ago) by deraadt
Branch: MAIN
Changes since 1.14: +11 -0 lines
Diff to previous 1.14 (colored)

scp should not link against kerberos stuff

Revision 1.14 / (download) - annotate - [select for diffs], Tue Oct 5 01:23:54 1999 UTC (24 years, 8 months ago) by dugsong
Branch: MAIN
Changes since 1.13: +1 -1 lines
Diff to previous 1.13 (colored)

crc32 compensation attack fix from CORE-SDI. "it's not crypto..." -- deraadt@

Revision 1.13 / (download) - annotate - [select for diffs], Mon Oct 4 20:56:28 1999 UTC (24 years, 8 months ago) by deraadt
Branch: MAIN
Changes since 1.12: +3 -4 lines
Diff to previous 1.12 (colored)

more shrinking

Revision 1.12 / (download) - annotate - [select for diffs], Mon Oct 4 20:52:44 1999 UTC (24 years, 8 months ago) by markus
Branch: MAIN
Changes since 1.11: +1 -6 lines
Diff to previous 1.11 (colored)

nuked minfd. sigh. hope this is the last one.

Revision 1.11 / (download) - annotate - [select for diffs], Fri Oct 1 19:54:11 1999 UTC (24 years, 8 months ago) by beck
Branch: MAIN
Changes since 1.10: +2 -2 lines
Diff to previous 1.10 (colored)

Remove kerberos libdes - it's all in libcrypto

Revision 1.10 / (download) - annotate - [select for diffs], Fri Oct 1 17:40:01 1999 UTC (24 years, 8 months ago) by deraadt
Branch: MAIN
Changes since 1.9: +3 -2 lines
Diff to previous 1.9 (colored)

Why do I need this library dependency workaround for static builds.. anyone?

Revision 1.9 / (download) - annotate - [select for diffs], Thu Sep 30 17:08:52 1999 UTC (24 years, 8 months ago) by deraadt
Branch: MAIN
Changes since 1.8: +1 -1 lines
Diff to previous 1.8 (colored)

use libc md5

Revision 1.8 / (download) - annotate - [select for diffs], Thu Sep 30 00:17:08 1999 UTC (24 years, 8 months ago) by provos
Branch: MAIN
Changes since 1.7: +1 -1 lines
Diff to previous 1.7 (colored)

revert last commit. somethign was out of sync.

Revision 1.7 / (download) - annotate - [select for diffs], Thu Sep 30 00:09:59 1999 UTC (24 years, 8 months ago) by provos
Branch: MAIN
Changes since 1.6: +1 -1 lines
Diff to previous 1.6 (colored)

link with -lkrb

Revision 1.6 / (download) - annotate - [select for diffs], Wed Sep 29 18:16:22 1999 UTC (24 years, 8 months ago) by dugsong
Branch: MAIN
Changes since 1.5: +8 -2 lines
Diff to previous 1.5 (colored)

update krb4/AFS support to ssh-1.2.27-afs-kerberos-pl1 level, clean up unused variables, update manpages

Revision 1.5 / (download) - annotate - [select for diffs], Wed Sep 29 12:27:39 1999 UTC (24 years, 8 months ago) by deraadt
Branch: MAIN
Changes since 1.4: +1 -0 lines
Diff to previous 1.4 (colored)

DPADD; mickey

Revision 1.4 / (download) - annotate - [select for diffs], Tue Sep 28 04:45:38 1999 UTC (24 years, 8 months ago) by provos
Branch: MAIN
Changes since 1.3: +4 -4 lines
Diff to previous 1.3 (colored)

convert all uses of gmp to SSL bignum
convert all used of rsa to SSL rsa functions
remove all use of randomstate to OpenBSD arc4random() and arc4_stir()
all this done at a long long night in Canada.

Revision 1.3 / (download) - annotate - [select for diffs], Sun Sep 26 22:29:51 1999 UTC (24 years, 8 months ago) by deraadt
Branch: MAIN
Changes since 1.2: +2 -94 lines
Diff to previous 1.2 (colored)

distribution target

Revision 1.2 / (download) - annotate - [select for diffs], Sun Sep 26 21:52:50 1999 UTC (24 years, 8 months ago) by deraadt
Branch: MAIN
Changes since 1.1: +1 -2 lines
Diff to previous 1.1 (colored)

proper groups for install

Revision 1.1 / (download) - annotate - [select for diffs], Sun Sep 26 21:47:55 1999 UTC (24 years, 8 months ago) by deraadt
Branch: MAIN

build ssh components using our build model

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.