From owner-freebsd-hackers Wed Mar 5 13:55:20 2003 Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2A2037B401 for ; Wed, 5 Mar 2003 13:55:18 -0800 (PST) Received: from sccrmhc01.attbi.com (sccrmhc01.attbi.com [204.127.202.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F48A43F3F for ; Wed, 5 Mar 2003 13:55:18 -0800 (PST) (envelope-from julian@elischer.org) Received: from interjet.elischer.org (12-232-168-4.client.attbi.com[12.232.168.4]) by sccrmhc01.attbi.com (sccrmhc01) with ESMTP id <2003030521551700100j6rrve>; Wed, 5 Mar 2003 21:55:17 +0000 Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id NAA62964 for ; Wed, 5 Mar 2003 13:55:16 -0800 (PST) Date: Wed, 5 Mar 2003 13:55:14 -0800 (PST) From: Julian Elischer To: hackers@freebsd.org Subject: ssh/ssl linkage Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG OpenSSH uses openssl to a great extent, however when you do ldd ssh you get: libssh.so.2 => /usr/lib/libssh.so.2 (0x28078000) libcrypto.so.2 => /usr/lib/libcrypto.so.2 (0x280a9000) libutil.so.3 => /usr/lib/libutil.so.3 (0x28161000) libz.so.2 => /usr/lib/libz.so.2 (0x2816a000) libc.so.4 => /usr/lib/libc.so.4 (0x28177000) or in earlier versions: libcrypto.so.2 => /usr/lib/libcrypto.so.2 (0x2808a000) libutil.so.3 => /usr/lib/libutil.so.3 (0x28143000) libz.so.2 => /usr/lib/libz.so.2 (0x2814b000) libc.so.4 => /usr/lib/libc.so.4 (0x28158000) so my question is: how is the connection made to libssl? is it via libcrypto? is it statically built into the ssh binary? If I upgrade openssl due to teh security upgrade, should I recompile ssh as well? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message