From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/1317 Path: news.gmane.org!not-for-mail From: Rich Felker Newsgroups: gmane.linux.lib.musl.general Subject: Re: crypt* files in crypt directory Date: Tue, 17 Jul 2012 13:51:23 -0400 Message-ID: <20120717175122.GR544@brightrain.aerifal.cx> References: Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: dough.gmane.org 1342547533 9428 80.91.229.3 (17 Jul 2012 17:52:13 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 17 Jul 2012 17:52:13 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-1318-gllmg-musl=m.gmane.org@lists.openwall.com Tue Jul 17 19:52:12 2012 Return-path: Envelope-to: gllmg-musl@plane.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1SrBwP-0002Lx-TP for gllmg-musl@plane.gmane.org; Tue, 17 Jul 2012 19:52:10 +0200 Original-Received: (qmail 19630 invoked by uid 550); 17 Jul 2012 17:52:09 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 19613 invoked from network); 17 Jul 2012 17:52:08 -0000 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Xref: news.gmane.org gmane.linux.lib.musl.general:1317 Archived-At: On Tue, Jul 17, 2012 at 11:40:28AM +0200, Daniel Cegiełka wrote: > Hi, > > I have a proposal to move the crypt* files from misc directory to the > new crypt directory. I'm definitely open to this; the misc directory is presently a mess and eventually I want to eliminate it completely. If we do go ahead with moving it, it might make sense to eliminate the crypt_ prefix from the filenames (i.e. just des.c instead of crypt_des.c) to eliminate redundancy. > I want to port to musl crypt_blowfish patch > (http://www.openwall.com/crypt/) and keeping everything in one > directory would be more readable. I would be interested in getting at least this, md5, and sha hash support added, as long as they can be made compact. 3-5k each would be ideal but I realize that might be difficult. For inclusion in musl, they should have no non-const static data (i.e. no global state) and also avoid using excessive stack space for temporary tables. Rich