OpenBSD CVS

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


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

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.90, Sun Dec 10 19:37:57 2017 UTC (6 years, 5 months ago) by deraadt
Branch: MAIN
CVS Tags: HEAD
Changes since 1.89: +1 -1 lines
FILE REMOVED

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.89 / (download) - annotate - [select for diffs], Sat Jul 1 13:50:45 2017 UTC (6 years, 11 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_6_2_BASE, OPENBSD_6_2
Changes since 1.88: +2 -2 lines
Diff to previous 1.88 (colored)

remove post-SSHv1 removal dead code from rsa.c and merge the
remaining bit that it still used into ssh-rsa.c; ok markus

Revision 1.88 / (download) - annotate - [select for diffs], Sun Apr 30 23:26:16 2017 UTC (7 years, 1 month ago) by djm
Branch: MAIN
Changes since 1.87: +2 -2 lines
Diff to previous 1.87 (colored)

remove the (in)famous SSHv1 CRC compensation attack detector.

Despite your cameo in The Matrix movies, you will not be missed.

ok markus

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

remove SSH1 make flag and associated files
ok markus@

Revision 1.86 / (download) - annotate - [select for diffs], Mon Jul 4 18:01:44 2016 UTC (7 years, 11 months ago) by guenther
Branch: MAIN
CVS Tags: OPENBSD_6_1_BASE, OPENBSD_6_1, OPENBSD_6_0_BASE, OPENBSD_6_0
Changes since 1.85: +1 -2 lines
Diff to previous 1.85 (colored)

DEBUGLIBS has been broken since the gcc4 switch, so delete it.  CFLAGS
contains -g by default anyway

problem noted by Edgar Pettijohn (edgar (at) pettijohn-web.com)
ok millert@ kettenis@ deraadt@

Revision 1.85 / (download) - annotate - [select for diffs], Wed May 25 23:48:45 2016 UTC (8 years ago) by schwarze
Branch: MAIN
Changes since 1.84: +2 -2 lines
Diff to previous 1.84 (colored)

To prevent screwing up terminal settings when printing to the
terminal, for ASCII and UTF-8, escape bytes not forming characters
and bytes forming non-printable characters with vis(3) VIS_OCTAL.
For other character sets, abort printing of the current string in
these cases.  In particular,
* let scp(1) respect the local user's LC_CTYPE locale(1);
* sanitize data received from the remote host;
* sanitize filenames, usernames, and similar data even locally;
* take character display widths into account for the progressmeter.

This is believed to be sufficient to keep the local terminal safe
on OpenBSD, but bad things can still happen on other systems with
state-dependent locales because many places in the code print
unencoded ASCII characters into the output stream.

Using feedback from djm@ and martijn@,
various aspects discussed with many others.

deraadt@ says it should go in now, i probably already hesitated too long

Revision 1.84 / (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_5_9_BASE, OPENBSD_5_9
Changes since 1.83: +1 -2 lines
Diff to previous 1.83 (colored)

remove roaming support; ok djm@

Revision 1.83 / (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.82: +6 -2 lines
Diff to previous 1.82 (colored)

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

Revision 1.82 / (download) - annotate - [select for diffs], Mon Jan 19 20:30:24 2015 UTC (9 years, 4 months ago) by markus
Branch: MAIN
Changes since 1.81: +10 -4 lines
Diff to previous 1.81 (colored)

add experimental api for packet layer; ok djm@

Revision 1.81 / (download) - annotate - [select for diffs], Mon Jan 19 19:52:17 2015 UTC (9 years, 4 months ago) by markus
Branch: MAIN
Changes since 1.80: +3 -3 lines
Diff to previous 1.80 (colored)

update packet.c & isolate, introduce struct ssh
a) switch packet.c to buffer api and isolate per-connection info into struct ssh
b) (de)serialization of the state is moved from monitor to packet.c
c) the old packet.c API is implemented in opacket.[ch]
d) compress.c/h is removed and integrated into packet.c
with and ok djm@

Revision 1.80 / (download) - annotate - [select for diffs], Wed Jan 14 15:02:39 2015 UTC (9 years, 4 months ago) by djm
Branch: MAIN
Changes since 1.79: +5 -4 lines
Diff to previous 1.79 (colored)

avoid BIGNUM in KRL code by using a simple bitmap;
feedback and ok markus

Revision 1.79 / (download) - annotate - [select for diffs], Tue Jun 24 01:13:22 2014 UTC (9 years, 11 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_5_6_BASE, OPENBSD_5_6
Changes since 1.78: +8 -5 lines
Diff to previous 1.78 (colored)

New key API: refactor key-related functions to be more library-like,
existing API is offered as a set of wrappers.

with and ok markus@

Thanks also to Ben Hawkes, David Tomaschik, Ivan Fratric, Matthew
Dempsky and Ron Bowes for a detailed review a few months ago.

Revision 1.78 / (download) - annotate - [select for diffs], Wed Apr 30 19:07:48 2014 UTC (10 years, 1 month ago) by naddy
Branch: MAIN
Changes since 1.77: +3 -3 lines
Diff to previous 1.77 (colored)

UMAC can use our local fallback implementation of AES when OpenSSL isn't
available.  Glue code straight from Ted Krovetz's original umac.c.
ok markus@

Revision 1.77 / (download) - annotate - [select for diffs], Wed Apr 30 05:29:56 2014 UTC (10 years, 1 month ago) by djm
Branch: MAIN
Changes since 1.76: +15 -2 lines
Diff to previous 1.76 (colored)

New buffer API; the first installment of the conversion/replacement
of OpenSSH's internals to make them usable as a standalone library.

This includes a set of wrappers to make it compatible with the
existing buffer API so replacement can occur incrementally.

With and ok markus@

Thanks also to Ben Hawkes, David Tomaschik, Ivan Fratric, Matthew
Dempsky and Ron Bowes for a detailed review.

Revision 1.76 / (download) - annotate - [select for diffs], Tue Apr 29 18:01:49 2014 UTC (10 years, 1 month ago) by markus
Branch: MAIN
Changes since 1.75: +16 -9 lines
Diff to previous 1.75 (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.75 / (download) - annotate - [select for diffs], Tue Apr 22 11:47:55 2014 UTC (10 years, 1 month ago) by henning
Branch: MAIN
Changes since 1.74: +5 -5 lines
Diff to previous 1.74 (colored)

comment out the .if (${KERBEROS5:L} block for now, breaks the build
once the bsd.own.mk KERBEROS5 is removed otherwise. this way suggested
by theo.

Revision 1.74 / (download) - annotate - [select for diffs], Wed Jan 29 06:18:35 2014 UTC (10 years, 4 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_5_5_BASE, OPENBSD_5_5
Changes since 1.73: +2 -2 lines
Diff to previous 1.73 (colored)

remove experimental, never-enabled JPAKE code; ok markus@

Revision 1.73 / (download) - annotate - [select for diffs], Tue Jan 28 20:13:46 2014 UTC (10 years, 4 months ago) by markus
Branch: MAIN
Changes since 1.72: +3 -2 lines
Diff to previous 1.72 (colored)

rename digest.c to digest-openssl.c and add libc variant; ok djm@

Revision 1.72 / (download) - annotate - [select for diffs], Mon Jan 27 18:58:14 2014 UTC (10 years, 4 months ago) by markus
Branch: MAIN
Changes since 1.71: +2 -2 lines
Diff to previous 1.71 (colored)

replace openssl HMAC with an implementation based on our ssh_digest_*
ok and feedback djm@

Revision 1.71 / (download) - annotate - [select for diffs], Thu Jan 9 23:20:01 2014 UTC (10 years, 4 months ago) by djm
Branch: MAIN
Changes since 1.70: +2 -2 lines
Diff to previous 1.70 (colored)

Introduce digest API and use it to perform all hashing operations
rather than calling OpenSSL EVP_Digest* directly. Will make it easier
to build a reduced-feature OpenSSH without OpenSSL in future;
feedback, ok markus@

Revision 1.70 / (download) - annotate - [select for diffs], Fri Dec 6 13:39:49 2013 UTC (10 years, 6 months ago) by markus
Branch: MAIN
Changes since 1.69: +5 -2 lines
Diff to previous 1.69 (colored)

support ed25519 keys (hostkeys and user identities) using the public domain
ed25519 reference code from SUPERCOP, see http://ed25519.cr.yp.to/software.html
feedback, help & ok djm@

Revision 1.69 / (download) - annotate - [select for diffs], Thu Nov 21 00:45:44 2013 UTC (10 years, 6 months ago) by djm
Branch: MAIN
Changes since 1.68: +3 -2 lines
Diff to previous 1.68 (colored)

Add a new protocol 2 transport cipher "chacha20-poly1305@openssh.com"
that combines Daniel Bernstein's ChaCha20 stream cipher and Poly1305 MAC
to build an authenticated encryption mode.

Inspired by and similar to Adam Langley's proposal for TLS:
http://tools.ietf.org/html/draft-agl-tls-chacha20poly1305-03
but differs in layout used for the MAC calculation and the use of a
second ChaCha20 instance to separately encrypt packet lengths.
Details are in the PROTOCOL.chacha20poly1305 file.

Feedback markus@, naddy@; manpage bits Loganden Velvindron @ AfriNIC
ok markus@ naddy@

Revision 1.68 / (download) - annotate - [select for diffs], Sat Nov 2 21:59:15 2013 UTC (10 years, 7 months ago) by markus
Branch: MAIN
Changes since 1.67: +2 -2 lines
Diff to previous 1.67 (colored)

use curve25519 for default key exchange (curve25519-sha256@libssh.org);
initial patch from Aris Adamantiadis; ok djm@

Revision 1.67 / (download) - annotate - [select for diffs], Thu Jan 17 23:00:01 2013 UTC (11 years, 4 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_5_4_BASE, OPENBSD_5_4, OPENBSD_5_3_BASE, OPENBSD_5_3
Changes since 1.66: +3 -2 lines
Diff to previous 1.66 (colored)

add support for Key Revocation Lists (KRLs). These are a compact way to
represent lists of revoked keys and certificates, taking as little as
a single bit of incremental cost to revoke a certificate by serial number.
KRLs are loaded via the existing RevokedKeys sshd_config option.

feedback and ok markus@

Revision 1.66 / (download) - annotate - [select for diffs], Wed Dec 12 16:46:10 2012 UTC (11 years, 5 months ago) by naddy
Branch: MAIN
Changes since 1.65: +2 -2 lines
Diff to previous 1.65 (colored)

use OpenSSL's EVP_aes_{128,192,256}_ctr() API and remove our hand-rolled
counter mode code; ok djm@

Revision 1.65 / (download) - annotate - [select for diffs], Thu Oct 4 13:21:50 2012 UTC (11 years, 8 months ago) by markus
Branch: MAIN
Changes since 1.64: +12 -1 lines
Diff to previous 1.64 (colored)

add umac128 variant; ok djm@ at n2k12

Revision 1.64 / (download) - annotate - [select for diffs], Thu Aug 2 13:38:39 2012 UTC (11 years, 10 months ago) by okan
Branch: MAIN
Changes since 1.63: +1 -2 lines
Diff to previous 1.63 (colored)

remove leftover NOLINT, WANTLINT, LINTFLAGS, LOBJ vars and lint targets.

ok guenther@

Revision 1.63 / (download) - annotate - [select for diffs], Mon Apr 25 04:53:21 2011 UTC (13 years, 1 month ago) by deraadt
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
Changes since 1.62: +2 -2 lines
Diff to previous 1.62 (colored)

linting this library is not helping anything

Revision 1.62 / (download) - annotate - [select for diffs], Tue Aug 31 11:54:45 2010 UTC (13 years, 9 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_4_9_BASE, OPENBSD_4_9
Changes since 1.61: +5 -5 lines
Diff to previous 1.61 (colored)

Implement Elliptic Curve Cryptography modes for key exchange (ECDH) and
host/user keys (ECDSA) as specified by RFC5656. ECDH and ECDSA offer
better performance than plain DH and DSA at the same equivalent symmetric
key length, as well as much shorter keys.

Only the mandatory sections of RFC5656 are implemented, specifically the
three REQUIRED curves nistp256, nistp384 and nistp521 and only ECDH and
ECDSA. Point compression (optional in RFC5656 is NOT implemented).

Certificate host and user keys using the new ECDSA key types are supported.

Note that this code has not been tested for interoperability and may be
subject to change.

feedback and ok markus@

Revision 1.61 / (download) - annotate - [select for diffs], Sat Feb 20 20:28:11 2010 UTC (14 years, 3 months ago) by markus
Branch: MAIN
CVS Tags: OPENBSD_4_8_BASE, OPENBSD_4_8, OPENBSD_4_7_BASE, OPENBSD_4_7
Changes since 1.60: +2 -1 lines
Diff to previous 1.60 (colored)

unbreak build for NOPIC systems; noticed, help and ok deraadt@

Revision 1.60 / (download) - annotate - [select for diffs], Mon Feb 8 13:05:27 2010 UTC (14 years, 4 months ago) by markus
Branch: MAIN
Changes since 1.59: +2 -2 lines
Diff to previous 1.59 (colored)

remove scard

Revision 1.59 / (download) - annotate - [select for diffs], Mon Feb 8 10:50:20 2010 UTC (14 years, 4 months ago) by markus
Branch: MAIN
Changes since 1.58: +2 -2 lines
Diff to previous 1.58 (colored)

replace our obsolete smartcard code with PKCS#11.
	ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/pkcs-11v2-20.pdf
ssh(1) and ssh-keygen(1) use dlopen(3) directly to talk to a PKCS#11
provider (shared library) while ssh-agent(1) delegates PKCS#11 to
a forked a ssh-pkcs11-helper process.
PKCS#11 is currently a compile time option.
feedback and ok djm@; inspired by patches from Alon Bar-Lev

Revision 1.58 / (download) - annotate - [select for diffs], Tue Nov 4 08:22:13 2008 UTC (15 years, 7 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_4_6_BASE, OPENBSD_4_6, OPENBSD_4_5_BASE, OPENBSD_4_5
Changes since 1.57: +2 -2 lines
Diff to previous 1.57 (colored)

Add support for an experimental zero-knowledge password authentication
method using the J-PAKE protocol described in F. Hao, P. Ryan,
"Password Authenticated Key Exchange by Juggling", 16th Workshop on
Security Protocols, Cambridge, April 2008.

This method allows password-based authentication without exposing
the password to the server. Instead, the client and server exchange
cryptographic proofs to demonstrate of knowledge of the password while
revealing nothing useful to an attacker or compromised endpoint.

This is experimental, work-in-progress code and is presently
compiled-time disabled (turn on -DJPAKE in Makefile.inc).

"just commit it.  It isn't too intrusive." deraadt@

Revision 1.57 / (download) - annotate - [select for diffs], Sat Sep 6 12:24:16 2008 UTC (15 years, 9 months ago) by djm
Branch: MAIN
Changes since 1.56: +2 -2 lines
Diff to previous 1.56 (colored)

OpenSSL 0.9.8h supplies a real EVP_sha256 so we do not need our
replacement anymore

Revision 1.56 / (download) - annotate - [select for diffs], Tue Jun 10 03:57:27 2008 UTC (16 years ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_4_4_BASE, OPENBSD_4_4
Changes since 1.55: +2 -2 lines
Diff to previous 1.55 (colored)

support CIDR address matching in sshd_config "Match address" blocks, with
full support for negation and fall-back to classic wildcard matching.
For example:

Match address 192.0.2.0/24,3ffe:ffff::/32,!10.*
    PasswordAuthentication yes

addrmatch.c code mostly lifted from flowd's addr.c

feedback and ok dtucker@

Revision 1.55 / (download) - annotate - [select for diffs], Thu Jun 7 19:37:34 2007 UTC (17 years ago) by pvalchev
Branch: MAIN
CVS Tags: OPENBSD_4_3_BASE, OPENBSD_4_3, OPENBSD_4_2_BASE, OPENBSD_4_2
Changes since 1.54: +2 -2 lines
Diff to previous 1.54 (colored)

Add a new MAC algorithm for data integrity, UMAC-64 (not default yet, must
specify umac-64@openssh.com). Provides about 20% end-to-end speedup
compared to hmac-md5. Represents a different approach to message
authentication to that of HMAC that may be beneficial if HMAC based on one
of its underlying hash algorithms is found to be vulnerable to a new attack.
http://www.ietf.org/rfc/rfc4418.txt

in conjunction with and OK djm@

Revision 1.51.2.1 / (download) - annotate - [select for diffs], Fri Oct 6 03:19:33 2006 UTC (17 years, 8 months ago) by brad
Branch: OPENBSD_3_8
Changes since 1.51: +4 -3 lines
Diff to previous 1.51 (colored) next main 1.52 (colored)

upgrade to OpenSSH 4.4

Revision 1.51.4.1 / (download) - annotate - [select for diffs], Sat Sep 30 04:06:51 2006 UTC (17 years, 8 months ago) by brad
Branch: OPENBSD_3_9
Changes since 1.51: +4 -3 lines
Diff to previous 1.51 (colored) next main 1.52 (colored)

upgrade to OpenSSH 4.4

Revision 1.54 / (download) - annotate - [select for diffs], Sun May 28 16:45:09 2006 UTC (18 years ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_4_1_BASE, OPENBSD_4_1, OPENBSD_4_0_BASE, OPENBSD_4_0
Changes since 1.53: +2 -1 lines
Diff to previous 1.53 (colored)

build a lint library for us to use above

Revision 1.53 / (download) - annotate - [select for diffs], Tue Apr 18 10:44:28 2006 UTC (18 years, 1 month ago) by dtucker
Branch: MAIN
Changes since 1.52: +2 -2 lines
Diff to previous 1.52 (colored)

Move Buffer bignum functions into their own file, bufbn.c.  This means that
sftp and sftp-server (which use the Buffer functions in bufaux.c but not the
bignum ones) no longer need to be linked with libcrypto.  ok markus@

Revision 1.52 / (download) - annotate - [select for diffs], Tue Mar 7 09:07:39 2006 UTC (18 years, 3 months ago) by djm
Branch: MAIN
Changes since 1.51: +2 -2 lines
Diff to previous 1.51 (colored)

Implement the diffie-hellman-group-exchange-sha256 key exchange method
using the SHA256 code in libc (and wrapper to make it into an OpenSSL
EVP), interop tested against CVS PuTTY

Revision 1.50.2.1 / (download) - annotate - [select for diffs], Sun Sep 4 18:40:11 2005 UTC (18 years, 9 months ago) by brad
Branch: OPENBSD_3_7
Changes since 1.50: +2 -2 lines
Diff to previous 1.50 (colored) next main 1.51 (colored)

upgrade to OpenSSH 4.2

Revision 1.49.2.2 / (download) - annotate - [select for diffs], Fri Sep 2 03:45:01 2005 UTC (18 years, 9 months ago) by brad
Branch: OPENBSD_3_6
Changes since 1.49.2.1: +2 -2 lines
Diff to previous 1.49.2.1 (colored) to branchpoint 1.49 (colored) next main 1.50 (colored)

upgrade to OpenSSH 4.2

Revision 1.51 / (download) - annotate - [select for diffs], Sat Apr 9 04:32:54 2005 UTC (19 years, 2 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_3_9_BASE, OPENBSD_3_8_BASE
Branch point for: OPENBSD_3_9, OPENBSD_3_8
Changes since 1.50: +2 -2 lines
Diff to previous 1.50 (colored)

replace tilde_expand_filename with a simpler implementation, ahead of more
whacking; ok deraadt@

Revision 1.46.2.2 / (download) - annotate - [select for diffs], Thu Mar 10 17:15:05 2005 UTC (19 years, 3 months ago) by brad
Branch: OPENBSD_3_5
Changes since 1.46.2.1: +4 -4 lines
Diff to previous 1.46.2.1 (colored) to branchpoint 1.46 (colored) next main 1.47 (colored)

upgrade to OpenSSH 4.0

Revision 1.49.2.1 / (download) - annotate - [select for diffs], Thu Mar 10 16:28:28 2005 UTC (19 years, 3 months ago) by brad
Branch: OPENBSD_3_6
Changes since 1.49: +3 -3 lines
Diff to previous 1.49 (colored)

upgrade to OpenSSH 4.0

Revision 1.50 / (download) - annotate - [select for diffs], Wed Dec 22 02:13:19 2004 UTC (19 years, 5 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_3_7_BASE
Branch point for: OPENBSD_3_7
Changes since 1.49: +3 -3 lines
Diff to previous 1.49 (colored)

remove fallback AES support for old OpenSSL, as OpenBSD has had it for many
years now; ok deraadt@

Revision 1.49 / (download) - annotate - [select for diffs], Mon Aug 23 14:26:39 2004 UTC (19 years, 9 months ago) by dtucker
Branch: MAIN
CVS Tags: OPENBSD_3_6_BASE
Branch point for: OPENBSD_3_6
Changes since 1.48: +2 -2 lines
Diff to previous 1.48 (colored)

Use permanently_set_uid() in ssh and ssh-keysign for consistency, matches
change in Portable; ok markus@

Revision 1.44.2.2 / (download) - annotate - [select for diffs], Thu Aug 19 22:37:33 2004 UTC (19 years, 9 months ago) by brad
Branch: OPENBSD_3_4
Changes since 1.44.2.1: +4 -3 lines
Diff to previous 1.44.2.1 (colored) to branchpoint 1.44 (colored) next main 1.45 (colored)

upgrade to OpenSSH 3.9

Revision 1.46.2.1 / (download) - annotate - [select for diffs], Thu Aug 19 04:13:28 2004 UTC (19 years, 9 months ago) by brad
Branch: OPENBSD_3_5
Changes since 1.46: +4 -3 lines
Diff to previous 1.46 (colored)

upgrade to OpenSSH 3.9

Revision 1.48 / (download) - annotate - [select for diffs], Sun Jun 13 15:03:02 2004 UTC (19 years, 11 months ago) by djm
Branch: MAIN
Changes since 1.47: +3 -2 lines
Diff to previous 1.47 (colored)

implement session multiplexing in the client (the server has supported this
since 2.0); ok markus@

Revision 1.47 / (download) - annotate - [select for diffs], Sun May 9 01:21:50 2004 UTC (20 years, 1 month ago) by djm
Branch: MAIN
Changes since 1.46: +2 -2 lines
Diff to previous 1.46 (colored)

kill it here too

Revision 1.39.2.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.39.2.1: +4 -4 lines
Diff to previous 1.39.2.1 (colored) to branchpoint 1.39 (colored) next main 1.40 (colored)

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

Revision 1.44.2.1 / (download) - annotate - [select for diffs], Sat Feb 28 03:51:34 2004 UTC (20 years, 3 months ago) by brad
Branch: OPENBSD_3_4
Changes since 1.44: +4 -4 lines
Diff to previous 1.44 (colored)

upgrade to OpenSSH 3.8

Revision 1.46 / (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_3_5_BASE
Branch point for: OPENBSD_3_5
Changes since 1.45: +3 -3 lines
Diff to previous 1.45 (colored)

unexpand and delete whitespace at EOL; ok markus@

Revision 1.45 / (download) - annotate - [select for diffs], Tue Sep 23 20:17:11 2003 UTC (20 years, 8 months ago) by markus
Branch: MAIN
Changes since 1.44: +2 -2 lines
Diff to previous 1.44 (colored)

replace fatal_cleanup() and linked list of fatal callbacks with static
cleanup_exit() function.  re-refine cleanup_exit() where appropriate,
allocate sshd's authctxt eary to allow simpler cleanup in sshd.
tested by many, ok deraadt@

Revision 1.36.2.2 / (download) - annotate - [select for diffs], Tue Sep 16 21:20:29 2003 UTC (20 years, 8 months ago) by brad
Branch: OPENBSD_3_2
Changes since 1.36.2.1: +10 -14 lines
Diff to previous 1.36.2.1 (colored) to branchpoint 1.36 (colored) next main 1.37 (colored)

upgrade to OpenSSH 3.7

Revision 1.39.2.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.39: +10 -14 lines
Diff to previous 1.39 (colored)

upgrade to OpenSSH 3.7

Revision 1.44 / (download) - annotate - [select for diffs], Fri Aug 22 10:56:09 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.43: +4 -1 lines
Diff to previous 1.43 (colored)

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

Revision 1.43 / (download) - annotate - [select for diffs], Sat May 17 04:27:52 2003 UTC (21 years ago) by markus
Branch: MAIN
Changes since 1.42: +2 -2 lines
Diff to previous 1.42 (colored)

experimental support for aes-ctr modes from
http://www.ietf.org/internet-drafts/draft-ietf-secsh-newmodes-00.txt
ok djm@

Revision 1.42 / (download) - annotate - [select for diffs], Thu May 15 03:08:29 2003 UTC (21 years ago) by markus
Branch: MAIN
Changes since 1.41: +3 -2 lines
Diff to previous 1.41 (colored)

split out custom EVP ciphers

Revision 1.41 / (download) - annotate - [select for diffs], Wed May 14 18:16:21 2003 UTC (21 years ago) by jakob
Branch: MAIN
Changes since 1.40: +2 -2 lines
Diff to previous 1.40 (colored)

add experimental support for verifying hos keys using DNS as described
in draft-ietf-secsh-dns-xx.txt. more information in README.dns.
ok markus@ and henning@

Revision 1.40 / (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.39: +1 -9 lines
Diff to previous 1.39 (colored)

Disable Kerberos 4 support.

ok markus@

Revision 1.33.2.2 / (download) - annotate - [select for diffs], Thu Apr 3 22:35:21 2003 UTC (21 years, 2 months ago) by miod
Branch: OPENBSD_3_1
Changes since 1.33.2.1: +2 -2 lines
Diff to previous 1.33.2.1 (colored) to branchpoint 1.33 (colored) next main 1.34 (colored)

Merge OpenSSH 3.6.1

Revision 1.36.2.1 / (download) - annotate - [select for diffs], Tue Apr 1 00:12:14 2003 UTC (21 years, 2 months ago) by margarida
Branch: OPENBSD_3_2
Changes since 1.36: +2 -2 lines
Diff to previous 1.36 (colored)

Update to OpenSSH 3.6

Revision 1.39 / (download) - annotate - [select for diffs], Fri Feb 21 09:04:09 2003 UTC (21 years, 3 months ago) by markus
Branch: MAIN
CVS Tags: OPENBSD_3_3_BASE
Branch point for: OPENBSD_3_3
Changes since 1.38: +2 -3 lines
Diff to previous 1.38 (colored)

move server only kex and monitor code to sshd.

Revision 1.38 / (download) - annotate - [select for diffs], Sun Feb 16 17:09:57 2003 UTC (21 years, 3 months ago) by markus
Branch: MAIN
Changes since 1.37: +2 -1 lines
Diff to previous 1.37 (colored)

split kex into client and server code, no need to link
server code into the client; ok provos@

Revision 1.37 / (download) - annotate - [select for diffs], Sun Jan 12 16:59:14 2003 UTC (21 years, 4 months ago) by markus
Branch: MAIN
Changes since 1.36: +2 -2 lines
Diff to previous 1.36 (colored)

move progressmeter.c to libssh; ok djm/fgs@

Revision 1.33.2.1 / (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.33: +7 -7 lines
Diff to previous 1.33 (colored)

Pull in OpenSSH-3.4

Revision 1.29.2.3 / (download) - annotate - [select for diffs], Sat Jun 22 07:24:39 2002 UTC (21 years, 11 months ago) by miod
Branch: OPENBSD_3_0
Changes since 1.29.2.2: +7 -7 lines
Diff to previous 1.29.2.2 (colored) to branchpoint 1.29 (colored) next main 1.30 (colored)

Update OpenSSH 3.3, files missed in previous commit.

Revision 1.36 / (download) - annotate - [select for diffs], Tue Jun 11 15:23:29 2002 UTC (22 years ago) by hin
Branch: MAIN
CVS Tags: OPENBSD_3_2_BASE
Branch point for: OPENBSD_3_2
Changes since 1.35: +5 -5 lines
Diff to previous 1.35 (colored)

Make sure kerberosV/kafs.h is picked up if kerberosIV/kafs.h is not removed.

ok markus@

Revision 1.35 / (download) - annotate - [select for diffs], Tue Jun 11 04:14:26 2002 UTC (22 years ago) by markus
Branch: MAIN
Changes since 1.34: +2 -2 lines
Diff to previous 1.34 (colored)

no longer use uidswap.[ch] from the ssh client
run less code with euid==0 if ssh is installed setuid root
just switch the euid, don't switch the complete set of groups
(this is only needed by sshd). ok provos@

Revision 1.22.2.4 / (download) - annotate - [select for diffs], Sun Jun 2 22:56:15 2002 UTC (22 years ago) by miod
Branch: OPENBSD_2_9
Changes since 1.22.2.3: +3 -3 lines
Diff to previous 1.22.2.3 (colored) to branchpoint 1.22 (colored) next main 1.23 (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.34 / (download) - annotate - [select for diffs], Thu May 23 19:24:31 2002 UTC (22 years ago) by markus
Branch: MAIN
Changes since 1.33: +2 -2 lines
Diff to previous 1.33 (colored)

add /usr/libexec/ssh-keysign: a setuid helper program for hostbased authentication
in protocol v2 (needs to access the hostkeys).

Revision 1.29.2.2 / (download) - annotate - [select for diffs], Fri May 17 00:03:30 2002 UTC (22 years ago) by miod
Branch: OPENBSD_3_0
Changes since 1.29.2.1: +3 -3 lines
Diff to previous 1.29.2.1 (colored) to branchpoint 1.29 (colored)

Update OpenSSH to version 3.2.2.

Revision 1.33 / (download) - annotate - [select for diffs], Mon Mar 18 17:50:31 2002 UTC (22 years, 2 months ago) by provos
Branch: MAIN
CVS Tags: OPENBSD_3_1_BASE
Branch point for: OPENBSD_3_1
Changes since 1.32: +2 -2 lines
Diff to previous 1.32 (colored)

integrate privilege separated openssh; its turned off by default for now.
work done by me and markus@

Revision 1.22.2.3 / (download) - annotate - [select for diffs], Sat Mar 9 00:20:50 2002 UTC (22 years, 3 months ago) by miod
Branch: OPENBSD_2_9
Changes since 1.22.2.2: +4 -3 lines
Diff to previous 1.22.2.2 (colored) to branchpoint 1.22 (colored)

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

Revision 1.16.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.16.2.5: +4 -3 lines
Diff to previous 1.16.2.5 (colored) to branchpoint 1.16 (colored) next main 1.17 (colored)

Merge OpenSSH 3.1.

Revision 1.32 / (download) - annotate - [select for diffs], Fri Mar 8 01:53:56 2002 UTC (22 years, 3 months ago) by itojun
Branch: MAIN
Changes since 1.31: +2 -2 lines
Diff to previous 1.31 (colored)

tabify

Revision 1.29.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.29: +4 -3 lines
Diff to previous 1.29 (colored)

Update to OpenSSH-3.1 on 3.0-stable branch

Revision 1.31 / (download) - annotate - [select for diffs], Fri Feb 22 12:20:34 2002 UTC (22 years, 3 months ago) by markus
Branch: MAIN
Changes since 1.30: +3 -3 lines
Diff to previous 1.30 (colored)

overwrite fatal() in ssh-keyscan.c; fixes pr 2354; ok provos@

Revision 1.30 / (download) - annotate - [select for diffs], Fri Jan 25 22:04:10 2002 UTC (22 years, 4 months ago) by mickey
Branch: MAIN
Changes since 1.29: +2 -1 lines
Diff to previous 1.29 (colored)

do not build debug version either; markus@ ok

Revision 1.22.2.2 / (download) - annotate - [select for diffs], Thu Nov 15 22:51:17 2001 UTC (22 years, 6 months ago) by miod
Branch: OPENBSD_2_9
Changes since 1.22.2.1: +1 -3 lines
Diff to previous 1.22.2.1 (colored) to branchpoint 1.22 (colored)

Merge OpenSSH 3.0.1.

Revision 1.22.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.22: +11 -4 lines
Diff to previous 1.22 (colored)

Pull in OpenSSH-2.9.9

Revision 1.16.2.5 / (download) - annotate - [select for diffs], Thu Sep 27 00:15:47 2001 UTC (22 years, 8 months ago) by miod
Branch: OPENBSD_2_8
Changes since 1.16.2.4: +11 -4 lines
Diff to previous 1.16.2.4 (colored) to branchpoint 1.16 (colored)

Pull in OpenSSH 2.9.9 to the 2.8 branch.

Revision 1.29 / (download) - annotate - [select for diffs], Tue Jun 26 17:52:41 2001 UTC (22 years, 11 months ago) by dugsong
Branch: MAIN
CVS Tags: OPENBSD_3_0_BASE
Branch point for: OPENBSD_3_0
Changes since 1.28: +5 -2 lines
Diff to previous 1.28 (colored)

only build Kerberos v5 support with KERBEROS5=yes

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

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

Revision 1.27 / (download) - annotate - [select for diffs], Tue Jun 26 05:52:54 2001 UTC (22 years, 11 months ago) by markus
Branch: MAIN
Changes since 1.26: +1 -5 lines
Diff to previous 1.26 (colored)

unbreak

Revision 1.26 / (download) - annotate - [select for diffs], Tue Jun 26 05:33:35 2001 UTC (22 years, 11 months ago) by markus
Branch: MAIN
Changes since 1.25: +6 -1 lines
Diff to previous 1.25 (colored)

more smartcard support.

Revision 1.25 / (download) - annotate - [select for diffs], Sun Jun 24 05:35:34 2001 UTC (22 years, 11 months ago) by markus
Branch: MAIN
Changes since 1.24: +2 -2 lines
Diff to previous 1.24 (colored)

switch to readpassphrase(3)
2.7/8-stable needs readpassphrase.[ch] from libc

Revision 1.24 / (download) - annotate - [select for diffs], Thu May 31 10:30:18 2001 UTC (23 years ago) by markus
Branch: MAIN
Changes since 1.23: +3 -5 lines
Diff to previous 1.23 (colored)

undo the .c file split, just merge the header and keep the cvs history

Revision 1.23 / (download) - annotate - [select for diffs], Wed May 30 12:55:14 2001 UTC (23 years ago) by markus
Branch: MAIN
Changes since 1.22: +6 -4 lines
Diff to previous 1.22 (colored)

channel layer cleanup: merge header files and split .c files

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

Pull in OpenSSH-2.9 to 2.8 branch.

Revision 1.22 / (download) - annotate - [select for diffs], Tue Apr 3 19:53:30 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.21: +2 -2 lines
Diff to previous 1.21 (colored)

move kex to kex*.c, used dispatch_set() callbacks for kex. should
make rekeying easier.

Revision 1.21 / (download) - annotate - [select for diffs], Thu Mar 29 21:17:40 2001 UTC (23 years, 2 months ago) by markus
Branch: MAIN
Changes since 1.20: +2 -2 lines
Diff to previous 1.20 (colored)

prepare for rekeying: move DH code to dh.c

Revision 1.16.2.3 / (download) - annotate - [select for diffs], Wed Mar 21 19:46:32 2001 UTC (23 years, 2 months ago) by jason
Branch: OPENBSD_2_8
Changes since 1.16.2.2: +0 -0 lines
Diff to previous 1.16.2.2 (colored) to branchpoint 1.16 (colored)

Pull in OpenSSH-2.5.2 for 2.8 branch.

Revision 1.10.2.5 / (download) - annotate - [select for diffs], Wed Mar 21 18:53:22 2001 UTC (23 years, 2 months ago) by jason
Branch: OPENBSD_2_7
Changes since 1.10.2.4: +0 -0 lines
Diff to previous 1.10.2.4 (colored) to branchpoint 1.10 (colored) next main 1.11 (colored)

Pull in OpenSSH-2.5.2 for 2.7 branch.

Revision 1.10.2.4 / (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.10.2.3: +4 -2 lines
Diff to previous 1.10.2.3 (colored) to branchpoint 1.10 (colored)

OpenSSH-2.5.1 for 2.7 patch branch

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

Pull in OpenSSH-2.5.1

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

Pull in OpenSSH 2.5.0

Revision 1.20 / (download) - annotate - [select for diffs], Sun Feb 11 12:59:26 2001 UTC (23 years, 3 months ago) by markus
Branch: MAIN
Changes since 1.19: +2 -2 lines
Diff to previous 1.19 (colored)

1) clean up the MAC support for SSH-2
2) allow you to specify the MAC with 'ssh -m'
3) or the 'MACs' keyword in ssh(d)_config
4) add hmac-{md5,sha1}-96
	ok stevesk@, provos@

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

$OpenBSD$

Revision 1.18 / (download) - annotate - [select for diffs], Sun Jan 21 19:06:03 2001 UTC (23 years, 4 months ago) by markus
Branch: MAIN
Changes since 1.17: +1 -1 lines
Diff to previous 1.17 (colored)

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

Revision 1.17 / (download) - annotate - [select for diffs], Sun Nov 12 19:50:39 2000 UTC (23 years, 6 months ago) by markus
Branch: MAIN
Changes since 1.16: +2 -2 lines
Diff to previous 1.16 (colored)

add support for RSA to SSH2.  please test.

there are now 3 types of keys: RSA1 is used by ssh-1 only,
RSA and DSA are used by SSH2.

you can use 'ssh-keygen -t rsa -f ssh2_rsa_file' to generate RSA
keys for SSH2 and use the RSA keys for hostkeys or for user keys.

SSH2 RSA or DSA keys are added to .ssh/authorised_keys2 as before.

IdentityFile2, HostDsaKey and DSAAuthentication are obsolete.
you can use multiple IdentityFile and HostKey for all types of keys.

the option DSAAuthentication is replaced by PubkeyAuthetication.

Revision 1.10.2.3 / (download) - annotate - [select for diffs], Wed Nov 8 21:27:39 2000 UTC (23 years, 7 months ago) by jason
Branch: OPENBSD_2_7
Changes since 1.10.2.2: +4 -3 lines
Diff to previous 1.10.2.2 (colored) to branchpoint 1.10 (colored)

openssh-2.3.0 for 2.7 patch branch

Revision 1.16 / (download) - annotate - [select for diffs], Fri Oct 13 18:59:15 2000 UTC (23 years, 7 months ago) by markus
Branch: MAIN
CVS Tags: OPENBSD_2_8_BASE
Branch point for: OPENBSD_2_8
Changes since 1.15: +1 -1 lines
Diff to previous 1.15 (colored)

rijndael/aes support

Revision 1.15 / (download) - annotate - [select for diffs], Wed Oct 11 20:14:40 2000 UTC (23 years, 8 months ago) by markus
Branch: MAIN
Changes since 1.14: +2 -1 lines
Diff to previous 1.14 (colored)

add support for s/key (kbd-interactive) to ssh2, based on work by mkiernan@avantgo.com and me

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

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

Closes PR 1246

Revision 1.10.2.2 / (download) - annotate - [select for diffs], Fri Sep 1 18:13:23 2000 UTC (23 years, 9 months ago) by jason
Branch: OPENBSD_2_7
Changes since 1.10.2.1: +2 -2 lines
Diff to previous 1.10.2.1 (colored) to branchpoint 1.10 (colored)

Pull in OpenSSH-2.2.0 to 2.7 patch branch

Revision 1.13 / (download) - annotate - [select for diffs], Sat Aug 19 21:34:44 2000 UTC (23 years, 9 months ago) by markus
Branch: MAIN
Changes since 1.12: +1 -1 lines
Diff to previous 1.12 (colored)

add SSH2/DSA support to the agent and some other DSA related cleanups.
(note that we cannot talk to ssh.com's ssh2 agents)

Revision 1.12 / (download) - annotate - [select for diffs], Tue Aug 1 19:01:42 2000 UTC (23 years, 10 months ago) by provos
Branch: MAIN
Changes since 1.11: +1 -1 lines
Diff to previous 1.11 (colored)

rename aux.c to util.c to help with cygwin port

Revision 1.10.2.1 / (download) - annotate - [select for diffs], Mon Jun 12 02:25:28 2000 UTC (24 years ago) by jason
Branch: OPENBSD_2_7
Changes since 1.10: +1 -1 lines
Diff to previous 1.10 (colored)

update patch branch to OpenSSH-2.1.1

Revision 1.11 / (download) - annotate - [select for diffs], Wed May 17 08:20:16 2000 UTC (24 years ago) by markus
Branch: MAIN
Changes since 1.10: +1 -1 lines
Diff to previous 1.10 (colored)

enable nonblocking IO for sshd w/ proto 1, too; split out common code

Revision 1.10 / (download) - annotate - [select for diffs], Wed Apr 26 20:56:30 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.9: +1 -1 lines
Diff to previous 1.9 (colored)

add DSA pubkey auth and other SSH2 fixes.  use ssh-keygen -[xX]
for trading keys with the real and the original SSH, directly from the
people who invented the SSH protocol.

Revision 1.9 / (download) - annotate - [select for diffs], Mon Apr 3 20:06:16 2000 UTC (24 years, 2 months ago) by markus
Branch: MAIN
Changes since 1.8: +1 -1 lines
Diff to previous 1.8 (colored)

DSA, keyexchange, algorithm agreement for ssh2

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

replace big switch() with function tables (prepare for ssh2)

Revision 1.7 / (download) - annotate - [select for diffs], Thu Mar 23 22:15:34 2000 UTC (24 years, 2 months ago) by markus
Branch: MAIN
Changes since 1.6: +2 -1 lines
Diff to previous 1.6 (colored)

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

Revision 1.6 / (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.5: +1 -1 lines
Diff to previous 1.5 (colored)

support DESTDIR include fetching; dm

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

atomicio() via lib

Revision 1.4 / (download) - annotate - [select for diffs], Tue Nov 16 22:49:29 1999 UTC (24 years, 6 months ago) by markus
Branch: MAIN
Changes since 1.3: +3 -3 lines
Diff to previous 1.3 (colored)

rsa key fingerprints, idea from Bjoern Groenvall <bg@sics.se>

Revision 1.3 / (download) - annotate - [select for diffs], Wed Nov 10 23:36:45 1999 UTC (24 years, 7 months ago) by markus
Branch: MAIN
Changes since 1.2: +2 -2 lines
Diff to previous 1.2 (colored)

add LogLevel {QUIET, FATAL, ERROR, INFO, CHAT, DEBUG} to ssh/sshd,
obsoletes QuietMode and FascistLogging in sshd.

Revision 1.2 / (download) - annotate - [select for diffs], Tue Oct 26 22:49:12 1999 UTC (24 years, 7 months ago) by deraadt
Branch: MAIN
Changes since 1.1: +0 -1 lines
Diff to previous 1.1 (colored)

do not -g -g

Revision 1.1 / (download) - annotate - [select for diffs], Mon Oct 25 20:27:26 1999 UTC (24 years, 7 months ago) by markus
Branch: MAIN

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

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.