Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 4 Oct 2002 13:31:23 -0700 (PDT)
From:      Sam Leffler <sam@FreeBSD.org>
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
Message-ID:  <200210042031.g94KVNEG040431@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200210042031.g94KVNEG040431>