The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/modules/crypto/Makefile

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 # $FreeBSD: releng/11.1/sys/modules/crypto/Makefile 319182 2017-05-30 04:11:12Z ngie $
    2 
    3 .PATH:  ${SRCTOP}/sys/opencrypto
    4 .PATH:  ${SRCTOP}/sys/crypto
    5 .PATH:  ${SRCTOP}/sys/crypto/blowfish
    6 .PATH:  ${SRCTOP}/sys/crypto/camellia
    7 .PATH:  ${SRCTOP}/sys/crypto/des
    8 .PATH:  ${SRCTOP}/sys/crypto/rijndael
    9 .PATH:  ${SRCTOP}/sys/crypto/sha2
   10 .PATH:  ${SRCTOP}/sys/crypto/siphash
   11 .PATH:  ${SRCTOP}/sys/crypto/skein
   12 
   13 KMOD    = crypto
   14 SRCS    = crypto.c cryptodev_if.c
   15 SRCS    += criov.c cryptosoft.c xform.c
   16 SRCS    += cast.c cryptodeflate.c rmd160.c rijndael-alg-fst.c rijndael-api.c rijndael-api-fst.c
   17 SRCS    += skipjack.c bf_enc.c bf_ecb.c bf_skey.c
   18 SRCS    += camellia.c camellia-api.c
   19 SRCS    += des_ecb.c des_enc.c des_setkey.c
   20 SRCS    += sha1.c sha256c.c sha512c.c
   21 SRCS    += skein.c skein_block.c
   22 .if exists(${MACHINE_ARCH}/skein_block_asm.s)
   23 .PATH:  ${SRCTOP}/sys/crypto/skein/${MACHINE_ARCH}
   24 SRCS    += skein_block_asm.s
   25 CFLAGS  += -DSKEIN_ASM -DSKEIN_USE_ASM=1792 # list of block functions to replace with assembly: 256+512+1024 = 1792
   26 ACFLAGS += -DELF -Wa,--noexecstack
   27 .endif
   28 SRCS    += siphash.c
   29 SRCS    += gmac.c gfmult.c
   30 SRCS    += opt_param.h cryptodev_if.h bus_if.h device_if.h
   31 SRCS    += opt_ddb.h
   32 
   33 .include <bsd.kmod.mk>

Cache object: e9c3e8aaaa3d38c7f877565cd5ae49bb


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.