From owner-cvs-all Fri Oct 4 13:34: 1 2002 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 7552037B401; Fri, 4 Oct 2002 13:33:59 -0700 (PDT) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2BB143E42; Fri, 4 Oct 2002 13:33:55 -0700 (PDT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.12.4/8.12.4) with SMTP id g94KXPOo073024; Fri, 4 Oct 2002 16:33:25 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Fri, 4 Oct 2002 16:33:24 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: Sam Leffler Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/opencrypto cast.c cast.h castsb.h criov.c crmbuf.c crypto.c crypto_if.m cryptodev.c cryptodev.h cryptosoft.c cryptosoft.h deflate.c deflate.h rijndael.c rijndael.h rmd160.c rmd160.h skipjack.c skipjack.h xform.c xform.h In-Reply-To: <200210042031.g94KVNEG040431@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Wonderful. I am *extremely* pleased to see this go into the tree, and greatly appreciate all the hard work you've done to make this happen. I hope I'm the first to thank you for the commits, but I'm sure I won't be the last. :-) Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Network Associates Laboratories On Fri, 4 Oct 2002, Sam Leffler wrote: > sam 2002/10/04 13:31:23 PDT > > Added files: > sys/opencrypto cast.c cast.h castsb.h criov.c crmbuf.c > crypto.c crypto_if.m cryptodev.c > cryptodev.h cryptosoft.c cryptosoft.h > deflate.c deflate.h rijndael.c rijndael.h > rmd160.c rmd160.h skipjack.c skipjack.h > xform.c xform.h > Log: > In-kernel crypto framework derived from openbsd. This facility provides > a consistent interface to h/w and s/w crypto algorithms for use by the > kernel and (for h/w at least) by user-mode apps. Access for user-level > code is through a /dev/crypto device that'll eventually be used by openssl > to (potentially) accelerate many applications. Coming soon is an IPsec > that makes use of this service to accelerate ESP, AH, and IPCOMP protocols. > > Included here is the "core" crypto support, /dev/crypto driver, various > crypto algorithms that are not already present in the KAME crypto area, > and support routines used by crypto device drivers. > > Obtained from: openbsd > > Revision Changes Path > 1.1 +243 -0 src/sys/opencrypto/cast.c (new) > 1.1 +23 -0 src/sys/opencrypto/cast.h (new) > 1.1 +545 -0 src/sys/opencrypto/castsb.h (new) > 1.1 +137 -0 src/sys/opencrypto/criov.c (new) > 1.1 +118 -0 src/sys/opencrypto/crmbuf.c (new) > 1.1 +936 -0 src/sys/opencrypto/crypto.c (new) > 1.1 +128 -0 src/sys/opencrypto/crypto_if.m (new) > 1.1 +798 -0 src/sys/opencrypto/cryptodev.c (new) > 1.1 +347 -0 src/sys/opencrypto/cryptodev.h (new) > 1.1 +1025 -0 src/sys/opencrypto/cryptosoft.c (new) > 1.1 +65 -0 src/sys/opencrypto/cryptosoft.h (new) > 1.1 +189 -0 src/sys/opencrypto/deflate.c (new) > 1.1 +56 -0 src/sys/opencrypto/deflate.h (new) > 1.1 +1244 -0 src/sys/opencrypto/rijndael.c (new) > 1.1 +52 -0 src/sys/opencrypto/rijndael.h (new) > 1.1 +363 -0 src/sys/opencrypto/rmd160.c (new) > 1.1 +41 -0 src/sys/opencrypto/rmd160.h (new) > 1.1 +258 -0 src/sys/opencrypto/skipjack.c (new) > 1.1 +19 -0 src/sys/opencrypto/skipjack.h (new) > 1.1 +629 -0 src/sys/opencrypto/xform.c (new) > 1.1 +101 -0 src/sys/opencrypto/xform.h (new) > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message