From owner-freebsd-ports Wed Aug 9 1:50: 7 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 72B8837B8F6 for ; Wed, 9 Aug 2000 01:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id BAA23969; Wed, 9 Aug 2000 01:50:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from minotaur.bit.net.au (minotaur.bit.net.au [203.18.94.87]) by hub.freebsd.org (Postfix) with ESMTP id E3FA937B6F8 for ; Wed, 9 Aug 2000 01:42:07 -0700 (PDT) (envelope-from pdh@minotaur.bit.net.au) Received: (from pdh@localhost) by minotaur.bit.net.au (8.9.3/8.9.3) id SAA08465; Wed, 9 Aug 2000 18:42:04 +1000 (EST) (envelope-from pdh) Message-Id: <200008090842.SAA08465@minotaur.bit.net.au> Date: Wed, 9 Aug 2000 18:42:04 +1000 (EST) From: Phil Homewood Reply-To: pdh@minotaur.bit.net.au To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/20499: [PATCH] conserver port doesn't like MD5 crypto Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 20499 >Category: ports >Synopsis: [PATCH] conserver port doesn't like MD5 crypto >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Aug 09 01:50:01 PDT 2000 >Closed-Date: >Last-Modified: >Originator: Phil Homewood >Release: FreeBSD 4.1-STABLE i386 >Organization: >Environment: conserver-5.21, FreeBSD 4.1-STABLE >Description: There's a hardcoded limit of 16 on encrypted password length in conserver, which means passwords encrypted with MD5 don't work. >How-To-Repeat: Use MD5 crypto in conserver.cf. >Fix: Correct fix would be to get this info from or but as I'm not sure which of those is best (or if I should look get the limit from there - or elsewhere even...) --- ports/comms/conserver/work/conserver/group.h.orig Wed Aug 9 18:35:58 2000 +++ ports/comms/conserver/work/conserver/group.h Wed Aug 9 18:36:32 2000 @@ -26,7 +26,7 @@ * 4. This notice may not be removed or altered. */ -#define MAXPSWDLEN 16 /* max length of encrypted password */ +#define MAXPSWDLEN 32 /* max length of encrypted password */ typedef struct grpent { /* group info */ int port; /* port group listens on */ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message