From owner-cvs-all Fri Oct 4 13:31:25 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 2B04237B401; Fri, 4 Oct 2002 13:31:24 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB51243E42; Fri, 4 Oct 2002 13:31:23 -0700 (PDT) (envelope-from sam@FreeBSD.org) Received: from freefall.freebsd.org (sam@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id g94KVNCo040432; Fri, 4 Oct 2002 13:31:23 -0700 (PDT) (envelope-from sam@freefall.freebsd.org) Received: (from sam@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g94KVNEG040431; Fri, 4 Oct 2002 13:31:23 -0700 (PDT) Message-Id: <200210042031.g94KVNEG040431@freefall.freebsd.org> From: Sam Leffler Date: Fri, 4 Oct 2002 13:31:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: 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 X-FreeBSD-CVS-Branch: HEAD 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 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