From owner-freebsd-stable Tue Feb 25 07:31:32 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id HAA27346 for stable-outgoing; Tue, 25 Feb 1997 07:31:32 -0800 (PST) Received: from asstdc.scgt.oz.au (root@asstdc.scgt.oz.au [202.14.234.65]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id HAA27316 for ; Tue, 25 Feb 1997 07:30:55 -0800 (PST) Received: (from imb@localhost) by asstdc.scgt.oz.au (8.8.5/BSD4.4) id CAA03708 Wed, 26 Feb 1997 02:28:28 +1100 (EST) From: michael butler Message-Id: <199702251528.CAA03708@asstdc.scgt.oz.au> Subject: Re: secure & eBones In-Reply-To: from Josef Karthauser at "Feb 25, 97 02:01:32 pm" To: joe@pavilion.net (Josef Karthauser) Date: Wed, 26 Feb 1997 02:28:27 +1100 (EST) Cc: freebsd-stable@freebsd.org X-Mailer: ELM [version 2.4ME+ PL28 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-stable@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Josef Karthauser writes: > If I pull down eBones and secure (from the internat site) and do > a make install will my password file break (it is currently in > MD5 format I believe). No, it won't due to a really neat pair of lines that say .. if (!strncmp(setting, "$1$", 3)) return crypt_md5(key, setting); So even when you change the symbolic links to point at the DES stuff, the old passwords continue to work. > p.s I need secure so that I can run an apache SSL server This didn't used to work on 2.1.x and SSLeay .. maybe someone else could confirm (I run -current's secure with 2.1.7 in "production"), michael