From owner-cvs-all@FreeBSD.ORG Sun Oct 12 10:58:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D469516A4B3; Sun, 12 Oct 2003 10:58:54 -0700 (PDT) Received: from ebb.errno.com (ebb.errno.com [66.127.85.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA93443F3F; Sun, 12 Oct 2003 10:58:53 -0700 (PDT) (envelope-from sam@errno.com) Received: from 66.127.85.91 ([66.127.85.91]) (authenticated bits=0) by ebb.errno.com (8.12.9/8.12.9) with ESMTP id h9CHwq0x046265 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Sun, 12 Oct 2003 10:58:53 -0700 (PDT) (envelope-from sam@errno.com) From: Sam Leffler Organization: Errno Consulting To: Hajimu UMEMOTO , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Date: Sun, 12 Oct 2003 11:00:00 -0700 User-Agent: KMail/1.5.3 References: <200310120943.h9C9hmM9098555@repoman.freebsd.org> In-Reply-To: <200310120943.h9C9hmM9098555@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200310121100.00588.sam@errno.com> Subject: Re: cvs commit: src/sys/crypto/ripemd160 rmd160.c rmd160.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Oct 2003 17:58:55 -0000 On Sunday 12 October 2003 02:43 am, Hajimu UMEMOTO wrote: > ume 2003/10/12 02:43:48 PDT > > FreeBSD src repository > > Added files: > sys/crypto/ripemd160 rmd160.c rmd160.h > Log: > RIPEMD160 support > > Obtained from: KAME > > Revision Changes Path > 1.1 +369 -0 src/sys/crypto/ripemd160/rmd160.c (new) > http://cvsweb.FreeBSD.org/src/sys/crypto/ripemd160/rmd160.c?rev=1.1&content >-type=text/plain 1.1 +43 -0 src/sys/crypto/ripemd160/rmd160.h > (new) > http://cvsweb.FreeBSD.org/src/sys/crypto/ripemd160/rmd160.h?rev=1.1&content >-type=text/plain There is already RIPMD160 support in the system. This will break LINT builds I believe. Also, you should compare performance of your code to the existing code before importing something new--if your stuff is better then we should change the kernel crypto support to use your code; otherwise you should use what's already there. Sam