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/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 #
    2 # Cryptographic API
    3 #
    4 
    5 O_TARGET := crypto.o
    6 
    7 export-objs := api.o hmac.o
    8 
    9 autoload-crypto-$(CONFIG_KMOD) = autoload.o
   10 proc-crypto-$(CONFIG_PROC_FS) = proc.o
   11 
   12 obj-$(CONFIG_CRYPTO) += api.o cipher.o digest.o compress.o \
   13                         $(autoload-crypto-y) $(proc-crypto-y)
   14 
   15 obj-$(CONFIG_CRYPTO_HMAC) += hmac.o
   16 obj-$(CONFIG_CRYPTO_NULL) += crypto_null.o
   17 obj-$(CONFIG_CRYPTO_MD4) += md4.o
   18 obj-$(CONFIG_CRYPTO_MD5) += md5.o
   19 obj-$(CONFIG_CRYPTO_SHA1) += sha1.o
   20 obj-$(CONFIG_CRYPTO_SHA256) += sha256.o
   21 obj-$(CONFIG_CRYPTO_SHA512) += sha512.o
   22 obj-$(CONFIG_CRYPTO_DES) += des.o
   23 obj-$(CONFIG_CRYPTO_BLOWFISH) += blowfish.o
   24 obj-$(CONFIG_CRYPTO_TWOFISH) += twofish.o
   25 obj-$(CONFIG_CRYPTO_SERPENT) += serpent.o
   26 obj-$(CONFIG_CRYPTO_AES) += aes.o
   27 obj-$(CONFIG_CRYPTO_DEFLATE) += deflate.o
   28 
   29 obj-$(CONFIG_CRYPTO_TEST) += tcrypt.o
   30 
   31 include $(TOPDIR)/Rules.make

Cache object: ded2c0a69f72b1b6742be0b039f5e2ab


[ 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.