From owner-freebsd-questions Thu May 9 17:36:46 1996 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id RAA16460 for questions-outgoing; Thu, 9 May 1996 17:36:46 -0700 (PDT) Received: from alpha.xerox.com (alpha.Xerox.COM [13.1.64.93]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id RAA16446 for ; Thu, 9 May 1996 17:36:43 -0700 (PDT) Received: from crevenia.parc.xerox.com ([13.2.116.11]) by alpha.xerox.com with SMTP id <14807(8)>; Thu, 9 May 1996 17:35:58 PDT Received: from localhost ([127.0.0.1]) by crevenia.parc.xerox.com with SMTP id <177475>; Thu, 9 May 1996 17:35:46 -0700 X-Mailer: exmh version 1.6.4 10/10/95 To: Paul Walsh cc: questions@freebsd.org Subject: Re: Help generating passwords for Apache users In-reply-to: Your message of "Thu, 09 May 1996 08:20:35 PDT." <31920D43.51C5@nation-net.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 9 May 1996 17:35:43 PDT From: Bill Fenner Message-Id: <96May9.173546pdt.177475@crevenia.parc.xerox.com> Sender: owner-questions@freebsd.org X-Loop: FreeBSD.org Precedence: bulk I always use something like perl -e 'print crypt("password","salt"),"\n";' I always get "password" and "salt" backwards, but you can always tell when you do that because the output starts with the first two characters of the password instead of the two characters of the salt. (e.g. wrong output: % perl -e 'print crypt("salt","password"),"\n";' paLFFLSNu7nYo ^^ clue that you got them backwards) Bill