OpenBSD CVS

CVS log for src/usr.bin/ssh/match.c


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

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.44 / (download) - annotate - [select for diffs], Thu Apr 6 03:19:32 2023 UTC (13 months, 1 week ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4, HEAD
Changes since 1.43: +4 -1 lines
Diff to previous 1.43 (colored)

match_user() shouldn't be called with user==NULL unless
host and ipaddr are also NULL

Revision 1.43 / (download) - annotate - [select for diffs], Tue Nov 3 22:53:12 2020 UTC (3 years, 6 months ago) by djm
Branch: MAIN
CVS Tags: 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
Changes since 1.42: +4 -4 lines
Diff to previous 1.42 (colored)

fold consecutive '*' wildcards to mitigate combinatorial explosion
of recursive searches; ok dtucker

Revision 1.42 / (download) - annotate - [select for diffs], Sun Jul 5 23:59:45 2020 UTC (3 years, 10 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_6_8_BASE, OPENBSD_6_8
Changes since 1.41: +6 -6 lines
Diff to previous 1.41 (colored)

some language improvements; ok markus

Revision 1.41 / (download) - annotate - [select for diffs], Wed Nov 13 04:47:52 2019 UTC (4 years, 6 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_6_7_BASE, OPENBSD_6_7
Changes since 1.40: +2 -1 lines
Diff to previous 1.40 (colored)

stdarg.h required more broadly; ok djm

Revision 1.40 / (download) - annotate - [select for diffs], Fri Oct 4 04:13:39 2019 UTC (4 years, 7 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_6_6_BASE, OPENBSD_6_6
Changes since 1.39: +2 -2 lines
Diff to previous 1.39 (colored)

space

Revision 1.39 / (download) - annotate - [select for diffs], Wed Mar 6 22:14:23 2019 UTC (5 years, 2 months ago) by dtucker
Branch: MAIN
CVS Tags: OPENBSD_6_5_BASE, OPENBSD_6_5
Changes since 1.38: +9 -1 lines
Diff to previous 1.38 (colored)

Move checks for lists of users or groups into their own function.
This is a no-op on OpenBSD but will make things easier in -portable,
eg on systems where these checks should be case-insensitive.  ok djm@

Revision 1.38 / (download) - annotate - [select for diffs], Wed Jul 4 13:49:31 2018 UTC (5 years, 10 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_6_4_BASE, OPENBSD_6_4
Changes since 1.37: +30 -6 lines
Diff to previous 1.37 (colored)

repair PubkeyAcceptedKeyTypes (and friends) after RSA signature work -
returns ability to add/remove/specify algorithms by wildcard.

Algorithm lists are now fully expanded when the server/client configs
are finalised, so errors are reported early and the config dumps
(e.g. "ssh -G ...") now list the actual algorithms selected.

Clarify that, while wildcards are accepted in algorithm lists, they
aren't full pattern-lists that support negation.

(lots of) feedback, ok markus@

Revision 1.37 / (download) - annotate - [select for diffs], Fri Mar 10 04:24:55 2017 UTC (7 years, 2 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_6_3_BASE, OPENBSD_6_3, OPENBSD_6_2_BASE, OPENBSD_6_2, OPENBSD_6_1_BASE, OPENBSD_6_1
Changes since 1.36: +10 -2 lines
Diff to previous 1.36 (colored)

make hostname matching really insensitive to case; bz#2685,
reported by Petr Cerny; ok dtucker@

Revision 1.36 / (download) - annotate - [select for diffs], Fri Mar 10 03:52:48 2017 UTC (7 years, 2 months ago) by djm
Branch: MAIN
Changes since 1.35: +2 -2 lines
Diff to previous 1.35 (colored)

reword a comment to make it fit 80 columns

Revision 1.35 / (download) - annotate - [select for diffs], Wed Feb 15 23:38:31 2017 UTC (7 years, 3 months ago) by jsg
Branch: MAIN
Changes since 1.34: +5 -2 lines
Diff to previous 1.34 (colored)

Fix memory leaks in match_filter_list() error paths.

ok dtucker@ markus@

Revision 1.34 / (download) - annotate - [select for diffs], Fri Feb 3 23:01:19 2017 UTC (7 years, 3 months ago) by djm
Branch: MAIN
Changes since 1.33: +30 -1 lines
Diff to previous 1.33 (colored)

support =- for removing methods from algorithms lists, e.g.
Ciphers=-*cbc; suggested by Cristian Ionescu-Idbohrn in bz#2671
"I like it" markus@

Revision 1.33 / (download) - annotate - [select for diffs], Sun Nov 6 05:46:37 2016 UTC (7 years, 6 months ago) by djm
Branch: MAIN
Changes since 1.32: +15 -6 lines
Diff to previous 1.32 (colored)

Validate address ranges for AllowUser/DenyUsers at configuration load
time and refuse to accept bad ones. It was previously possible to
specify invalid CIDR address ranges (e.g. djm@127.1.2.3/55) and these
would always match.

Thanks to Laurence Parry for a detailed bug report. ok markus (for
a previous diff version)

Revision 1.32 / (download) - annotate - [select for diffs], Wed Sep 21 16:55:42 2016 UTC (7 years, 7 months ago) by djm
Branch: MAIN
Changes since 1.31: +2 -3 lines
Diff to previous 1.31 (colored)

Revert two recent changes to negated address matching. The new
behaviour offers unintuitive surprises. We'll find a better way
to deal with single negated matches.

match.c 1.31:
> fix matching for pattern lists that contain a single negated match,
> e.g. "Host !example"
>
> report and patch from Robin Becker. bz#1918 ok dtucker@

addrmatch.c 1.11:
> fix negated address matching where the address list consists of a
> single negated match, e.g. "Match addr !192.20.0.1"
>
> Report and patch from Jakub Jelen. bz#2397 ok dtucker@

Revision 1.31 / (download) - annotate - [select for diffs], Tue Aug 23 03:22:49 2016 UTC (7 years, 8 months ago) by djm
Branch: MAIN
Changes since 1.30: +3 -2 lines
Diff to previous 1.30 (colored)

fix matching for pattern lists that contain a single negated match,
e.g. "Host !example"

report and patch from Robin Becker. bz#1918 ok dtucker@

Revision 1.30 / (download) - annotate - [select for diffs], Mon May 4 06:10:48 2015 UTC (9 years ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_6_0_BASE, OPENBSD_6_0, OPENBSD_5_9_BASE, OPENBSD_5_9, OPENBSD_5_8_BASE, OPENBSD_5_8
Changes since 1.29: +6 -8 lines
Diff to previous 1.29 (colored)

Remove pattern length argument from match_pattern_list(),
we only ever use it for strlen(pattern).

Prompted by hanno AT hboeck.de pointing an out-of-bound read
error caused by an incorrect pattern length found using AFL
and his own tools.

ok markus@

Revision 1.29 / (download) - annotate - [select for diffs], Wed Nov 20 20:54:10 2013 UTC (10 years, 5 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_5_7_BASE, OPENBSD_5_7, OPENBSD_5_6_BASE, OPENBSD_5_6, OPENBSD_5_5_BASE, OPENBSD_5_5
Changes since 1.28: +3 -3 lines
Diff to previous 1.28 (colored)

unsigned casts for ctype macros where neccessary
ok guenther millert markus

Revision 1.28 / (download) - annotate - [select for diffs], Fri May 17 00:13:13 2013 UTC (11 years ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_5_4_BASE, OPENBSD_5_4
Changes since 1.27: +8 -7 lines
Diff to previous 1.27 (colored)

bye, bye xfree(); ok markus@

Revision 1.27 / (download) - annotate - [select for diffs], Tue Jun 10 23:06:19 2008 UTC (15 years, 11 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_5_3_BASE, OPENBSD_5_3, 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, OPENBSD_4_8_BASE, OPENBSD_4_8, OPENBSD_4_7_BASE, OPENBSD_4_7, OPENBSD_4_6_BASE, OPENBSD_4_6, OPENBSD_4_5_BASE, OPENBSD_4_5, OPENBSD_4_4_BASE, OPENBSD_4_4
Changes since 1.26: +8 -4 lines
Diff to previous 1.26 (colored)

support CIDR address matching in .ssh/authorized_keys from="..." stanzas

ok and extensive testing dtucker@

Revision 1.20.2.1 / (download) - annotate - [select for diffs], Fri Oct 6 03:19:32 2006 UTC (17 years, 7 months ago) by brad
Branch: OPENBSD_3_8
Changes since 1.20: +7 -4 lines
Diff to previous 1.20 (colored) next main 1.21 (colored)

upgrade to OpenSSH 4.4

Revision 1.21.2.1 / (download) - annotate - [select for diffs], Sat Sep 30 04:06:50 2006 UTC (17 years, 7 months ago) by brad
Branch: OPENBSD_3_9
Changes since 1.21: +5 -4 lines
Diff to previous 1.21 (colored) next main 1.22 (colored)

upgrade to OpenSSH 4.4

Revision 1.26 / (download) - annotate - [select for diffs], Thu Aug 3 03:34:42 2006 UTC (17 years, 9 months ago) by deraadt
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
Changes since 1.25: +3 -3 lines
Diff to previous 1.25 (colored)

almost entirely get rid of the culture of ".h files that include .h files"
ok djm, sort of ok stevesk
makes the pain stop in one easy step

Revision 1.25 / (download) - annotate - [select for diffs], Sat Jul 22 20:48:23 2006 UTC (17 years, 9 months ago) by stevesk
Branch: MAIN
Changes since 1.24: +2 -1 lines
Diff to previous 1.24 (colored)

move #include <string.h> out of includes.h

Revision 1.24 / (download) - annotate - [select for diffs], Sat Mar 25 13:17:02 2006 UTC (18 years, 1 month ago) by djm
Branch: MAIN
Changes since 1.23: +1 -0 lines
Diff to previous 1.23 (colored)

Put $OpenBSD$ tags back (as comments) to replace the RCSID()s that
Theo nuked - our scripts to sync -portable need them in the files

Revision 1.23 / (download) - annotate - [select for diffs], Mon Mar 20 18:42:26 2006 UTC (18 years, 2 months ago) by deraadt
Branch: MAIN
Changes since 1.22: +1 -1 lines
Diff to previous 1.22 (colored)

be strict with tolower() casting

Revision 1.22 / (download) - annotate - [select for diffs], Sun Mar 19 18:51:18 2006 UTC (18 years, 2 months ago) by deraadt
Branch: MAIN
Changes since 1.21: +0 -1 lines
Diff to previous 1.21 (colored)

RCSID() can die

Revision 1.21 / (download) - annotate - [select for diffs], Wed Feb 22 00:04:44 2006 UTC (18 years, 2 months ago) by stevesk
Branch: MAIN
CVS Tags: OPENBSD_3_9_BASE
Branch point for: OPENBSD_3_9
Changes since 1.20: +3 -1 lines
Diff to previous 1.20 (colored)

move #include <ctype.h> out of includes.h; ok djm@

Revision 1.19.14.1 / (download) - annotate - [select for diffs], Sun Sep 4 18:40:02 2005 UTC (18 years, 8 months ago) by brad
Branch: OPENBSD_3_7
Changes since 1.19: +2 -2 lines
Diff to previous 1.19 (colored) next main 1.20 (colored)

upgrade to OpenSSH 4.2

Revision 1.19.12.1 / (download) - annotate - [select for diffs], Fri Sep 2 03:45:00 2005 UTC (18 years, 8 months ago) by brad
Branch: OPENBSD_3_6
Changes since 1.19: +2 -2 lines
Diff to previous 1.19 (colored) next main 1.20 (colored)

upgrade to OpenSSH 4.2

Revision 1.20 / (download) - annotate - [select for diffs], Fri Jun 17 02:44:32 2005 UTC (18 years, 11 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_3_8_BASE
Branch point for: OPENBSD_3_8
Changes since 1.19: +2 -2 lines
Diff to previous 1.19 (colored)

make this -Wsign-compare clean; ok avsm@ markus@

Revision 1.12.2.2 / (download) - annotate - [select for diffs], Sat Mar 9 00:20:44 2002 UTC (22 years, 2 months ago) by miod
Branch: OPENBSD_2_9
Changes since 1.12.2.1: +25 -11 lines
Diff to previous 1.12.2.1 (colored) to branchpoint 1.12 (colored) next main 1.13 (colored)

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

Revision 1.9.2.6 / (download) - annotate - [select for diffs], Fri Mar 8 17:04:42 2002 UTC (22 years, 2 months ago) by brad
Branch: OPENBSD_2_8
Changes since 1.9.2.5: +25 -11 lines
Diff to previous 1.9.2.5 (colored) to branchpoint 1.9 (colored) next main 1.10 (colored)

Merge OpenSSH 3.1.

Revision 1.14.2.1 / (download) - annotate - [select for diffs], Thu Mar 7 17:37:46 2002 UTC (22 years, 2 months ago) by jason
Branch: OPENBSD_3_0
Changes since 1.14: +25 -11 lines
Diff to previous 1.14 (colored) next main 1.15 (colored)

Update to OpenSSH-3.1 on 3.0-stable branch

Revision 1.19 / (download) - annotate - [select for diffs], Fri Mar 1 13:12:10 2002 UTC (22 years, 2 months ago) by markus
Branch: MAIN
CVS Tags: OPENBSD_3_7_BASE, OPENBSD_3_6_BASE, OPENBSD_3_5_BASE, OPENBSD_3_5, OPENBSD_3_4_BASE, OPENBSD_3_4, OPENBSD_3_3_BASE, OPENBSD_3_3, OPENBSD_3_2_BASE, OPENBSD_3_2, OPENBSD_3_1_BASE, OPENBSD_3_1
Branch point for: OPENBSD_3_7, OPENBSD_3_6
Changes since 1.18: +2 -5 lines
Diff to previous 1.18 (colored)

undo the 'delay hostname lookup' change
match.c must not use compress.c (via canonhost.c/packet.c)
thanks to wilfried@

Revision 1.18 / (download) - annotate - [select for diffs], Thu Feb 28 19:36:28 2002 UTC (22 years, 2 months ago) by stevesk
Branch: MAIN
Changes since 1.17: +6 -3 lines
Diff to previous 1.17 (colored)

delay hostname lookup until we see a ``@'' in DenyUsers and AllowUsers
for sshd -u0; ok markus@

Revision 1.17 / (download) - annotate - [select for diffs], Mon Feb 11 16:21:42 2002 UTC (22 years, 3 months ago) by markus
Branch: MAIN
Changes since 1.16: +2 -2 lines
Diff to previous 1.16 (colored)

support up to 40 algorithms per proposal

Revision 1.16 / (download) - annotate - [select for diffs], Wed Dec 19 07:18:56 2001 UTC (22 years, 5 months ago) by deraadt
Branch: MAIN
Changes since 1.15: +6 -6 lines
Diff to previous 1.15 (colored)

basic KNF done while i was looking for something else

Revision 1.15 / (download) - annotate - [select for diffs], Wed Dec 5 16:54:51 2001 UTC (22 years, 5 months ago) by markus
Branch: MAIN
Changes since 1.14: +20 -6 lines
Diff to previous 1.14 (colored)

make theo and djm happy: bye bye regexp

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

Pull in OpenSSH-2.9.9

Revision 1.9.2.5 / (download) - annotate - [select for diffs], Thu Sep 27 00:15:42 2001 UTC (22 years, 7 months ago) by miod
Branch: OPENBSD_2_8
Changes since 1.9.2.4: +50 -1 lines
Diff to previous 1.9.2.4 (colored) to branchpoint 1.9 (colored)

Pull in OpenSSH 2.9.9 to the 2.8 branch.

Revision 1.14 / (download) - annotate - [select for diffs], Wed Jun 27 04:48:53 2001 UTC (22 years, 10 months ago) by markus
Branch: MAIN
CVS Tags: OPENBSD_3_0_BASE
Branch point for: OPENBSD_3_0
Changes since 1.13: +25 -1 lines
Diff to previous 1.13 (colored)

tridge@samba.org

Revision 1.13 / (download) - annotate - [select for diffs], Sun Jun 24 05:25:10 2001 UTC (22 years, 10 months ago) by markus
Branch: MAIN
Changes since 1.12: +26 -1 lines
Diff to previous 1.12 (colored)

move ip+hostname check to match.c

Revision 1.9.2.4 / (download) - annotate - [select for diffs], Mon May 7 21:09:31 2001 UTC (23 years ago) by jason
Branch: OPENBSD_2_8
Changes since 1.9.2.3: +0 -0 lines
Diff to previous 1.9.2.3 (colored) to branchpoint 1.9 (colored)

Pull in OpenSSH-2.9 to 2.8 branch.

Revision 1.9.2.3 / (download) - annotate - [select for diffs], Wed Mar 21 19:46:26 2001 UTC (23 years, 2 months ago) by jason
Branch: OPENBSD_2_8
Changes since 1.9.2.2: +68 -1 lines
Diff to previous 1.9.2.2 (colored) to branchpoint 1.9 (colored)

Pull in OpenSSH-2.5.2 for 2.8 branch.

Revision 1.6.2.5 / (download) - annotate - [select for diffs], Wed Mar 21 18:52:51 2001 UTC (23 years, 2 months ago) by jason
Branch: OPENBSD_2_7
Changes since 1.6.2.4: +68 -1 lines
Diff to previous 1.6.2.4 (colored) to branchpoint 1.6 (colored) next main 1.7 (colored)

Pull in OpenSSH-2.5.2 for 2.7 branch.

Revision 1.6.2.4 / (download) - annotate - [select for diffs], Mon Mar 12 15:44:12 2001 UTC (23 years, 2 months ago) by jason
Branch: OPENBSD_2_7
Changes since 1.6.2.3: +4 -4 lines
Diff to previous 1.6.2.3 (colored) to branchpoint 1.6 (colored)

OpenSSH-2.5.1 for 2.7 patch branch

Revision 1.12 / (download) - annotate - [select for diffs], Sat Mar 10 17:51:04 2001 UTC (23 years, 2 months ago) by markus
Branch: MAIN
CVS Tags: OPENBSD_2_9_BASE
Branch point for: OPENBSD_2_9
Changes since 1.11: +68 -1 lines
Diff to previous 1.11 (colored)

add PreferredAuthentications

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

Pull in OpenSSH-2.5.1

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

Pull in OpenSSH 2.5.0

Revision 1.11 / (download) - annotate - [select for diffs], Sun Jan 21 19:05:52 2001 UTC (23 years, 3 months ago) by markus
Branch: MAIN
Changes since 1.10: +2 -2 lines
Diff to previous 1.10 (colored)

split ssh.h and try to cleanup the #include mess. remove unnecessary #includes.
rename util.[ch] -> misc.[ch]

Revision 1.10 / (download) - annotate - [select for diffs], Tue Dec 19 23:17:57 2000 UTC (23 years, 5 months ago) by markus
Branch: MAIN
Changes since 1.9: +3 -3 lines
Diff to previous 1.9 (colored)

replace 'unsigned bla' with 'u_bla' everywhere. also, replace 'char unsigned'
with u_char.

Revision 1.6.2.3 / (download) - annotate - [select for diffs], Wed Nov 8 21:30:56 2000 UTC (23 years, 6 months ago) by jason
Branch: OPENBSD_2_7
Changes since 1.6.2.2: +6 -8 lines
Diff to previous 1.6.2.2 (colored) to branchpoint 1.6 (colored)

openssh-2.3.0 (again) for 2.7 branch

Revision 1.9 / (download) - annotate - [select for diffs], Thu Sep 7 20:27:52 2000 UTC (23 years, 8 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_8_BASE
Branch point for: OPENBSD_2_8
Changes since 1.8: +6 -8 lines
Diff to previous 1.8 (colored)

cleanup copyright notices on all files.  I have attempted to be accurate with
the details.  everything is now under Tatu's licence (which I copied from his
readme), and/or the core-sdi bsd-ish thing for deattack, or various openbsd
developers under a 2-term bsd licence.  We're not changing any rules, just
being accurate.

Revision 1.6.2.2 / (download) - annotate - [select for diffs], Fri Sep 1 18:23:20 2000 UTC (23 years, 8 months ago) by jason
Branch: OPENBSD_2_7
Changes since 1.6.2.1: +1 -1 lines
Diff to previous 1.6.2.1 (colored) to branchpoint 1.6 (colored)

Pull in the rest of openssh-2.2.0 to 2.7 branch (luvin' cvs...)

Revision 1.8 / (download) - annotate - [select for diffs], Tue Jun 20 01:39:42 2000 UTC (23 years, 11 months ago) by markus
Branch: MAIN
Changes since 1.7: +1 -1 lines
Diff to previous 1.7 (colored)

OpenBSD tag

Revision 1.6.2.1 / (download) - annotate - [select for diffs], Mon Jun 12 02:37:34 2000 UTC (23 years, 11 months ago) by jason
Branch: OPENBSD_2_7
Changes since 1.6: +6 -6 lines
Diff to previous 1.6 (colored)

lovin' CVS... update patch branch to OpenSSH-2.1.1

Revision 1.7 / (download) - annotate - [select for diffs], Tue Jun 6 19:32:14 2000 UTC (23 years, 11 months ago) by markus
Branch: MAIN
Changes since 1.6: +6 -6 lines
Diff to previous 1.6 (colored)

fix match_hostname() logic for auth-rsa: deny access if we have a negative match or no match at all

Revision 1.6 / (download) - annotate - [select for diffs], Fri Apr 14 10:30:31 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.5: +8 -8 lines
Diff to previous 1.5 (colored)

whitespace cleanup

Revision 1.5 / (download) - annotate - [select for diffs], Thu Mar 23 22:15:33 2000 UTC (24 years, 1 month ago) by markus
Branch: MAIN
Changes since 1.4: +60 -1 lines
Diff to previous 1.4 (colored)

initial support for DSA keys. ok deraadt@, niels@

Revision 1.4 / (download) - annotate - [select for diffs], Wed Nov 24 19:53:48 1999 UTC (24 years, 5 months ago) by markus
Branch: MAIN
Changes since 1.3: +20 -15 lines
Diff to previous 1.3 (colored)

KNF, final part 3

Revision 1.3 / (download) - annotate - [select for diffs], Wed Nov 24 00:26:02 1999 UTC (24 years, 5 months ago) by deraadt
Branch: MAIN
Changes since 1.2: +14 -14 lines
Diff to previous 1.2 (colored)

much more KNF

Revision 1.2 / (download) - annotate - [select for diffs], Tue Nov 23 22:25:54 1999 UTC (24 years, 5 months ago) by markus
Branch: MAIN
Changes since 1.1: +54 -55 lines
Diff to previous 1.1 (colored)

KNF part 1

Revision 1.1 / (download) - annotate - [select for diffs], Sun Sep 26 20:53:36 1999 UTC (24 years, 7 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_6_BASE, OPENBSD_2_6

i bet a lot of people didn't know what ssh 1.2.16 had a nice license.
well, except for the patent issues.  someone in sweden (forget their
name at the moment) cleaned out most of the patented code, and now
this code removes rsa code.  when this is done, it will link against
libssl, but the work isn't completely done yet.  then we need to bring
this up to modern days, featurewise.

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.