2007-09-23 15:12:12 +00:00
|
|
|
#
|
2011-04-12 23:34:28 +00:00
|
|
|
# Copyright (C) 2006-2011 OpenWrt.org
|
2007-09-23 15:12:12 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
CRYPTO_MENU:=Cryptographic API modules
|
|
|
|
|
2013-12-14 16:40:24 +00:00
|
|
|
CRYPTO_MODULES = \
|
|
|
|
ALGAPI2=crypto_algapi \
|
|
|
|
BLKCIPHER2=crypto_blkcipher
|
2011-03-25 21:28:44 +00:00
|
|
|
|
2009-01-04 02:40:12 +00:00
|
|
|
crypto_confvar=CONFIG_CRYPTO_$(word 1,$(subst =,$(space),$(1)))
|
2013-01-14 17:09:16 +00:00
|
|
|
crypto_file=$(LINUX_DIR)/crypto/$(word 2,$(subst =,$(space),$(1))).ko
|
2009-01-05 08:43:39 +00:00
|
|
|
crypto_name=$(if $(findstring y,$($(call crypto_confvar,$(1)))),,$(word 2,$(subst =,$(space),$(1))))
|
2009-01-04 02:40:12 +00:00
|
|
|
|
2010-04-24 11:42:17 +00:00
|
|
|
define AddDepends/crypto
|
2008-09-28 07:09:47 +00:00
|
|
|
SUBMENU:=$(CRYPTO_MENU)
|
2015-09-08 12:31:04 +00:00
|
|
|
DEPENDS+= $(1)
|
2010-01-22 08:18:04 +00:00
|
|
|
endef
|
|
|
|
|
2015-01-05 13:01:23 +00:00
|
|
|
define KernelPackage/crypto-aead
|
|
|
|
TITLE:=CryptoAPI AEAD support
|
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_CRYPTO_AEAD \
|
|
|
|
CONFIG_CRYPTO_AEAD2
|
|
|
|
FILES:=$(LINUX_DIR)/crypto/aead.ko
|
2015-08-09 17:17:31 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,09,aead,1)
|
2015-01-05 13:01:23 +00:00
|
|
|
$(call AddDepends/crypto)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-aead))
|
|
|
|
|
|
|
|
|
2011-03-25 21:28:44 +00:00
|
|
|
define KernelPackage/crypto-hash
|
|
|
|
TITLE:=CryptoAPI hash support
|
2013-09-17 09:54:05 +00:00
|
|
|
KCONFIG:=CONFIG_CRYPTO_HASH
|
2011-03-25 21:28:44 +00:00
|
|
|
FILES:=$(LINUX_DIR)/crypto/crypto_hash.ko
|
2012-02-14 20:11:28 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,02,crypto_hash,1)
|
2011-03-25 21:28:44 +00:00
|
|
|
$(call AddDepends/crypto)
|
|
|
|
endef
|
2013-07-26 01:09:50 +00:00
|
|
|
|
2011-03-25 21:28:44 +00:00
|
|
|
$(eval $(call KernelPackage,crypto-hash))
|
|
|
|
|
2013-07-26 01:09:50 +00:00
|
|
|
|
2011-03-25 21:28:44 +00:00
|
|
|
define KernelPackage/crypto-manager
|
|
|
|
TITLE:=CryptoAPI algorithm manager
|
2015-01-05 13:01:30 +00:00
|
|
|
DEPENDS:=+kmod-crypto-aead +kmod-crypto-hash +kmod-crypto-pcompress
|
2011-03-25 21:28:44 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_CRYPTO_MANAGER \
|
2015-01-05 13:01:36 +00:00
|
|
|
CONFIG_CRYPTO_MANAGER2
|
|
|
|
FILES:=$(LINUX_DIR)/crypto/cryptomgr.ko
|
2015-08-09 17:17:51 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,09,cryptomgr,1)
|
2011-03-25 21:28:44 +00:00
|
|
|
$(call AddDepends/crypto)
|
|
|
|
endef
|
2013-07-26 01:09:50 +00:00
|
|
|
|
2011-03-25 21:28:44 +00:00
|
|
|
$(eval $(call KernelPackage,crypto-manager))
|
2010-01-22 08:18:04 +00:00
|
|
|
|
2013-07-26 01:09:50 +00:00
|
|
|
|
2012-12-15 01:59:29 +00:00
|
|
|
define KernelPackage/crypto-pcompress
|
|
|
|
TITLE:=CryptoAPI Partial (de)compression operations
|
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_CRYPTO_PCOMP=y \
|
|
|
|
CONFIG_CRYPTO_PCOMP2
|
|
|
|
FILES:=$(LINUX_DIR)/crypto/pcompress.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,09,pcompress)
|
|
|
|
$(call AddDepends/crypto)
|
|
|
|
endef
|
2013-07-26 01:09:50 +00:00
|
|
|
|
2012-12-15 01:59:29 +00:00
|
|
|
$(eval $(call KernelPackage,crypto-pcompress))
|
|
|
|
|
2013-07-26 01:09:50 +00:00
|
|
|
|
2011-08-17 08:48:38 +00:00
|
|
|
define KernelPackage/crypto-user
|
|
|
|
TITLE:=CryptoAPI userspace interface
|
2012-05-17 15:28:17 +00:00
|
|
|
DEPENDS:=+kmod-crypto-hash +kmod-crypto-manager
|
2011-08-17 08:48:38 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_CRYPTO_USER_API \
|
|
|
|
CONFIG_CRYPTO_USER_API_HASH \
|
|
|
|
CONFIG_CRYPTO_USER_API_SKCIPHER
|
|
|
|
FILES:= \
|
|
|
|
$(LINUX_DIR)/crypto/af_alg.ko \
|
|
|
|
$(LINUX_DIR)/crypto/algif_hash.ko \
|
|
|
|
$(LINUX_DIR)/crypto/algif_skcipher.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,09,af_alg algif_hash algif_skcipher)
|
|
|
|
$(call AddDepends/crypto)
|
|
|
|
endef
|
2013-07-26 01:09:50 +00:00
|
|
|
|
2011-08-17 08:48:38 +00:00
|
|
|
$(eval $(call KernelPackage,crypto-user))
|
|
|
|
|
2013-07-26 01:09:50 +00:00
|
|
|
|
2011-05-03 21:19:56 +00:00
|
|
|
define KernelPackage/crypto-wq
|
|
|
|
TITLE:=CryptoAPI work queue handling
|
|
|
|
KCONFIG:=CONFIG_CRYPTO_WORKQUEUE
|
|
|
|
FILES:=$(LINUX_DIR)/crypto/crypto_wq.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,09,crypto_wq)
|
|
|
|
$(call AddDepends/crypto)
|
|
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,crypto-wq))
|
|
|
|
|
|
|
|
define KernelPackage/crypto-rng
|
|
|
|
TITLE:=CryptoAPI random number generation
|
|
|
|
KCONFIG:=CONFIG_CRYPTO_RNG2
|
|
|
|
FILES:= \
|
|
|
|
$(LINUX_DIR)/crypto/rng.ko \
|
|
|
|
$(LINUX_DIR)/crypto/krng.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,09,rng krng)
|
|
|
|
$(call AddDepends/crypto)
|
|
|
|
endef
|
2013-07-26 01:09:50 +00:00
|
|
|
|
2011-05-03 21:19:56 +00:00
|
|
|
$(eval $(call KernelPackage,crypto-rng))
|
|
|
|
|
2013-07-26 01:09:50 +00:00
|
|
|
|
2011-05-03 21:19:56 +00:00
|
|
|
define KernelPackage/crypto-iv
|
|
|
|
TITLE:=CryptoAPI initialization vectors
|
2011-05-24 09:14:35 +00:00
|
|
|
DEPENDS:=+kmod-crypto-manager +kmod-crypto-rng +kmod-crypto-wq
|
2011-05-03 21:19:56 +00:00
|
|
|
KCONFIG:= CONFIG_CRYPTO_BLKCIPHER2
|
|
|
|
FILES:= \
|
|
|
|
$(LINUX_DIR)/crypto/eseqiv.ko \
|
|
|
|
$(LINUX_DIR)/crypto/chainiv.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,10,eseqiv chainiv)
|
|
|
|
$(call AddDepends/crypto)
|
|
|
|
endef
|
2013-07-26 01:09:50 +00:00
|
|
|
|
2011-05-03 21:19:56 +00:00
|
|
|
$(eval $(call KernelPackage,crypto-iv))
|
|
|
|
|
2015-01-05 13:01:42 +00:00
|
|
|
define KernelPackage/crypto-seqiv
|
|
|
|
TITLE:=CryptoAPI Sequence Number IV Generator
|
|
|
|
DEPENDS:=+kmod-crypto-aead +kmod-crypto-rng
|
|
|
|
KCONFIG:=CONFIG_CRYPTO_SEQIV
|
|
|
|
FILES:=$(LINUX_DIR)/crypto/seqiv.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,09,seqiv)
|
|
|
|
$(call AddDepends/crypto)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-seqiv))
|
|
|
|
|
2013-07-26 01:09:50 +00:00
|
|
|
|
2013-04-06 12:41:06 +00:00
|
|
|
define KernelPackage/crypto-hw-talitos
|
|
|
|
TITLE:=Freescale integrated security engine (SEC) driver
|
2015-07-24 15:36:08 +00:00
|
|
|
DEPENDS:=+kmod-crypto-manager +kmod-crypto-hash +kmod-random-core +kmod-crypto-authenc
|
2013-04-06 12:41:06 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_CRYPTO_DEV_TALITOS
|
|
|
|
FILES:= \
|
|
|
|
$(LINUX_DIR)/drivers/crypto/talitos.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,09,talitos)
|
|
|
|
$(call AddDepends/crypto)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-hw-talitos))
|
|
|
|
|
|
|
|
|
2010-01-22 08:18:04 +00:00
|
|
|
define KernelPackage/crypto-hw-padlock
|
2008-09-28 07:09:47 +00:00
|
|
|
TITLE:=VIA PadLock ACE with AES/SHA hw crypto module
|
2015-07-24 15:36:08 +00:00
|
|
|
DEPENDS:=+kmod-crypto-manager
|
2008-09-28 07:09:47 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_CRYPTO_DEV_PADLOCK \
|
|
|
|
CONFIG_CRYPTO_DEV_PADLOCK_AES \
|
|
|
|
CONFIG_CRYPTO_DEV_PADLOCK_SHA
|
|
|
|
FILES:= \
|
2010-07-12 14:06:13 +00:00
|
|
|
$(LINUX_DIR)/drivers/crypto/padlock-aes.ko \
|
|
|
|
$(LINUX_DIR)/drivers/crypto/padlock-sha.ko
|
2008-09-28 07:09:47 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,09,padlock-aes padlock-sha)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/crypto)
|
2008-09-28 07:09:47 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-hw-padlock))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/crypto-hw-geode
|
|
|
|
TITLE:=AMD Geode hardware crypto module
|
2013-07-19 14:46:02 +00:00
|
|
|
DEPENDS:=+kmod-crypto-manager
|
2008-09-28 07:09:47 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_CRYPTO_DEV_GEODE
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/crypto/geode-aes.ko
|
2008-09-28 07:09:47 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,09,geode-aes)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/crypto)
|
2008-09-28 07:09:47 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-hw-geode))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/crypto-hw-hifn-795x
|
|
|
|
TITLE:=HIFN 795x crypto accelerator
|
2013-07-18 13:08:27 +00:00
|
|
|
DEPENDS:=+kmod-random-core +kmod-crypto-manager
|
2008-09-28 07:09:47 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_CRYPTO_DEV_HIFN_795X \
|
|
|
|
CONFIG_CRYPTO_DEV_HIFN_795X_RNG=y
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/crypto/hifn_795x.ko
|
2008-09-28 07:09:47 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,09,hifn_795x)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/crypto,+kmod-crypto-des)
|
2008-09-28 07:09:47 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-hw-hifn-795x))
|
|
|
|
|
|
|
|
|
2009-10-05 17:05:43 +00:00
|
|
|
define KernelPackage/crypto-hw-ppc4xx
|
|
|
|
TITLE:=AMCC PPC4xx hardware crypto module
|
2010-04-29 04:04:19 +00:00
|
|
|
DEPENDS:=@TARGET_ppc40x||TARGET_ppc44x
|
2009-10-05 17:05:43 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_CRYPTO_DEV_PPC4XX
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/drivers/crypto/amcc/crypto4xx.ko
|
2009-10-05 17:05:43 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,90,crypto4xx)
|
2013-07-21 08:20:01 +00:00
|
|
|
$(call AddDepends/crypto,+kmod-crypto-manager +kmod-crypto-hash)
|
2009-10-05 17:05:43 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/crypto-hw-ppc4xx/description
|
|
|
|
Kernel support for the AMCC PPC4xx HW crypto engine.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-hw-ppc4xx))
|
|
|
|
|
|
|
|
|
2013-11-08 12:44:38 +00:00
|
|
|
define KernelPackage/crypto-hw-omap
|
|
|
|
TITLE:=TI OMAP hardware crypto modules
|
2013-11-11 11:51:54 +00:00
|
|
|
DEPENDS:=@TARGET_omap
|
2013-11-08 12:44:38 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_CRYPTO_DEV_OMAP_AES \
|
|
|
|
CONFIG_CRYPTO_DEV_OMAP_DES \
|
|
|
|
CONFIG_CRYPTO_DEV_OMAP_SHAM
|
2014-05-02 22:55:55 +00:00
|
|
|
ifneq ($(wildcard $(LINUX_DIR)/drivers/crypto/omap-des.ko),)
|
2013-11-08 12:44:38 +00:00
|
|
|
FILES:= \
|
|
|
|
$(LINUX_DIR)/drivers/crypto/omap-aes.ko \
|
|
|
|
$(LINUX_DIR)/drivers/crypto/omap-des.ko \
|
|
|
|
$(LINUX_DIR)/drivers/crypto/omap-sham.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,90,omap-aes omap-des omap-sham)
|
2014-05-02 22:55:55 +00:00
|
|
|
else
|
|
|
|
FILES:= \
|
|
|
|
$(LINUX_DIR)/drivers/crypto/omap-aes.ko \
|
|
|
|
$(LINUX_DIR)/drivers/crypto/omap-sham.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,90,omap-aes omap-sham)
|
|
|
|
endif
|
2013-11-08 12:44:38 +00:00
|
|
|
$(call AddDepends/crypto,+kmod-crypto-manager +kmod-crypto-hash)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/crypto-hw-omap/description
|
|
|
|
Kernel support for the TI OMAP HW crypto engine.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-hw-omap))
|
|
|
|
|
|
|
|
|
2008-07-12 01:57:22 +00:00
|
|
|
define KernelPackage/crypto-authenc
|
|
|
|
TITLE:=Combined mode wrapper for IPsec
|
2011-03-25 21:28:44 +00:00
|
|
|
DEPENDS:=+kmod-crypto-manager
|
2008-07-12 01:57:22 +00:00
|
|
|
KCONFIG:=CONFIG_CRYPTO_AUTHENC
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/crypto/authenc.ko
|
2008-07-12 01:57:22 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,09,authenc)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/crypto)
|
2008-07-12 01:57:22 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-authenc))
|
|
|
|
|
2011-02-12 23:55:06 +00:00
|
|
|
define KernelPackage/crypto-cbc
|
|
|
|
TITLE:=Cipher Block Chaining CryptoAPI module
|
2011-03-25 21:28:44 +00:00
|
|
|
DEPENDS:=+kmod-crypto-manager
|
2011-02-12 23:55:06 +00:00
|
|
|
KCONFIG:=CONFIG_CRYPTO_CBC
|
|
|
|
FILES:=$(LINUX_DIR)/crypto/cbc.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,09,cbc)
|
|
|
|
$(call AddDepends/crypto)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-cbc))
|
|
|
|
|
2015-01-05 13:01:52 +00:00
|
|
|
define KernelPackage/crypto-ctr
|
|
|
|
TITLE:=Counter Mode CryptoAPI module
|
2015-03-29 05:20:58 +00:00
|
|
|
DEPENDS:=+kmod-crypto-manager +kmod-crypto-seqiv +kmod-crypto-iv
|
2015-01-05 13:01:52 +00:00
|
|
|
KCONFIG:=CONFIG_CRYPTO_CTR
|
|
|
|
FILES:=$(LINUX_DIR)/crypto/ctr.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,09,ctr)
|
|
|
|
$(call AddDepends/crypto)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-ctr))
|
|
|
|
|
2015-03-29 05:20:50 +00:00
|
|
|
define KernelPackage/crypto-ccm
|
|
|
|
TITLE:=Support for Counter with CBC MAC (CCM)
|
|
|
|
DEPENDS:=+kmod-crypto-ctr +kmod-crypto-aead
|
|
|
|
KCONFIG:=CONFIG_CRYPTO_CCM
|
|
|
|
FILES:=$(LINUX_DIR)/crypto/ccm.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,09,ccm)
|
|
|
|
$(call AddDepends/crypto)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-ccm))
|
|
|
|
|
2014-04-28 19:47:38 +00:00
|
|
|
define KernelPackage/crypto-pcbc
|
|
|
|
TITLE:=Propagating Cipher Block Chaining CryptoAPI module
|
|
|
|
DEPENDS:=+kmod-crypto-manager
|
|
|
|
KCONFIG:=CONFIG_CRYPTO_PCBC
|
|
|
|
FILES:=$(LINUX_DIR)/crypto/pcbc.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,09,pcbc)
|
|
|
|
$(call AddDepends/crypto)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-pcbc))
|
|
|
|
|
2011-10-28 13:10:55 +00:00
|
|
|
define KernelPackage/crypto-crc32c
|
|
|
|
TITLE:=CRC32c CRC module
|
|
|
|
DEPENDS:=+kmod-crypto-hash
|
|
|
|
KCONFIG:=CONFIG_CRYPTO_CRC32C
|
2015-04-21 06:59:41 +00:00
|
|
|
FILES:=$(LINUX_DIR)/crypto/crc32c_generic.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,04,crc32c_generic,1)
|
2011-10-28 13:10:55 +00:00
|
|
|
$(call AddDepends/crypto)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-crc32c))
|
|
|
|
|
2013-07-26 01:09:50 +00:00
|
|
|
|
2007-09-23 15:12:12 +00:00
|
|
|
define KernelPackage/crypto-des
|
|
|
|
TITLE:=DES/3DES cipher CryptoAPI module
|
2007-11-28 12:50:20 +00:00
|
|
|
KCONFIG:=CONFIG_CRYPTO_DES
|
2011-05-15 09:37:35 +00:00
|
|
|
FILES:=$(LINUX_DIR)/crypto/des_generic.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,09,des_generic)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/crypto)
|
2007-09-23 15:12:12 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-des))
|
|
|
|
|
2013-07-26 01:09:50 +00:00
|
|
|
|
2011-02-12 23:54:59 +00:00
|
|
|
define KernelPackage/crypto-deflate
|
|
|
|
TITLE:=Deflate compression CryptoAPI module
|
2011-10-28 13:24:41 +00:00
|
|
|
DEPENDS:=+kmod-lib-zlib
|
2011-04-12 23:34:28 +00:00
|
|
|
KCONFIG:=CONFIG_CRYPTO_DEFLATE
|
|
|
|
FILES:=$(LINUX_DIR)/crypto/deflate.ko
|
2011-04-12 23:42:01 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,09,deflate)
|
2011-02-12 23:54:59 +00:00
|
|
|
$(call AddDepends/crypto)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-deflate))
|
|
|
|
|
2013-07-26 01:09:50 +00:00
|
|
|
|
2014-04-28 19:47:38 +00:00
|
|
|
define KernelPackage/crypto-fcrypt
|
|
|
|
TITLE:=FCRYPT cipher CryptoAPI module
|
|
|
|
KCONFIG:=CONFIG_CRYPTO_FCRYPT
|
|
|
|
FILES:=$(LINUX_DIR)/crypto/fcrypt.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,09,fcrypt)
|
|
|
|
$(call AddDepends/crypto)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-fcrypt))
|
|
|
|
|
2011-03-25 21:28:44 +00:00
|
|
|
define KernelPackage/crypto-ecb
|
|
|
|
TITLE:=Electronic CodeBook CryptoAPI module
|
|
|
|
DEPENDS:=+kmod-crypto-manager
|
|
|
|
KCONFIG:=CONFIG_CRYPTO_ECB
|
|
|
|
FILES:=$(LINUX_DIR)/crypto/ecb.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,09,ecb)
|
|
|
|
$(call AddDepends/crypto)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-ecb))
|
|
|
|
|
2007-09-23 15:12:12 +00:00
|
|
|
|
|
|
|
define KernelPackage/crypto-hmac
|
|
|
|
TITLE:=HMAC digest CryptoAPI module
|
2015-08-09 17:18:10 +00:00
|
|
|
DEPENDS:=+kmod-crypto-hash +kmod-crypto-manager
|
2007-09-23 15:12:12 +00:00
|
|
|
KCONFIG:=CONFIG_CRYPTO_HMAC
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/crypto/hmac.ko
|
2007-09-23 15:12:12 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,09,hmac)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/crypto)
|
2007-09-23 15:12:12 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-hmac))
|
|
|
|
|
|
|
|
|
2015-07-04 22:33:00 +00:00
|
|
|
define KernelPackage/crypto-cmac
|
|
|
|
TITLE:=Support for Cipher-based Message Authentication Code (CMAC)
|
|
|
|
DEPENDS:=+kmod-crypto-hash
|
|
|
|
KCONFIG:=CONFIG_CRYPTO_CMAC
|
|
|
|
FILES:=$(LINUX_DIR)/crypto/cmac.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,09,cmac)
|
|
|
|
$(call AddDepends/crypto)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-cmac))
|
|
|
|
|
|
|
|
|
2015-01-05 13:02:14 +00:00
|
|
|
define KernelPackage/crypto-gcm
|
|
|
|
TITLE:=GCM/GMAC CryptoAPI module
|
|
|
|
DEPENDS:=+kmod-crypto-ctr +kmod-crypto-ghash +kmod-crypto-null
|
|
|
|
KCONFIG:=CONFIG_CRYPTO_GCM
|
|
|
|
FILES:=$(LINUX_DIR)/crypto/gcm.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,09,gcm)
|
|
|
|
$(call AddDepends/crypto)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-gcm))
|
|
|
|
|
|
|
|
|
2015-01-05 13:01:56 +00:00
|
|
|
define KernelPackage/crypto-gf128
|
|
|
|
TITLE:=GF(2^128) multiplication functions CryptoAPI module
|
|
|
|
KCONFIG:=CONFIG_CRYPTO_GF128MUL
|
|
|
|
FILES:=$(LINUX_DIR)/crypto/gf128mul.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,09,gf128mul)
|
|
|
|
$(call AddDepends/crypto)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-gf128))
|
|
|
|
|
|
|
|
|
2015-01-05 13:02:08 +00:00
|
|
|
define KernelPackage/crypto-ghash
|
|
|
|
TITLE:=GHASH digest CryptoAPI module
|
2015-01-05 21:37:29 +00:00
|
|
|
DEPENDS:=+kmod-crypto-gf128 +kmod-crypto-hash
|
2015-01-05 13:02:08 +00:00
|
|
|
KCONFIG:=CONFIG_CRYPTO_GHASH
|
|
|
|
FILES:=$(LINUX_DIR)/crypto/ghash-generic.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,09,ghash-generic)
|
|
|
|
$(call AddDepends/crypto)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-ghash))
|
|
|
|
|
|
|
|
|
2011-10-28 19:16:12 +00:00
|
|
|
define KernelPackage/crypto-md4
|
|
|
|
TITLE:=MD4 digest CryptoAPI module
|
|
|
|
DEPENDS:=+kmod-crypto-hash
|
|
|
|
KCONFIG:=CONFIG_CRYPTO_MD4
|
|
|
|
FILES:=$(LINUX_DIR)/crypto/md4.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,09,md4)
|
|
|
|
$(call AddDepends/crypto)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-md4))
|
|
|
|
|
|
|
|
|
2007-09-23 15:12:12 +00:00
|
|
|
define KernelPackage/crypto-md5
|
|
|
|
TITLE:=MD5 digest CryptoAPI module
|
2011-03-25 21:28:44 +00:00
|
|
|
DEPENDS:=+kmod-crypto-hash
|
2007-09-23 15:12:12 +00:00
|
|
|
KCONFIG:=CONFIG_CRYPTO_MD5
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/crypto/md5.ko
|
2007-09-23 15:12:12 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,09,md5)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/crypto)
|
2007-09-23 15:12:12 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-md5))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/crypto-michael-mic
|
|
|
|
TITLE:=Michael MIC keyed digest CryptoAPI module
|
2011-03-25 21:28:44 +00:00
|
|
|
DEPENDS:=+kmod-crypto-hash
|
2007-09-23 15:12:12 +00:00
|
|
|
KCONFIG:=CONFIG_CRYPTO_MICHAEL_MIC
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/crypto/michael_mic.ko
|
2007-09-23 15:12:12 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,09,michael_mic)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/crypto)
|
2007-09-23 15:12:12 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-michael-mic))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/crypto-sha1
|
|
|
|
TITLE:=SHA1 digest CryptoAPI module
|
2011-03-25 21:28:44 +00:00
|
|
|
DEPENDS:=+kmod-crypto-hash
|
2007-09-23 15:12:12 +00:00
|
|
|
KCONFIG:=CONFIG_CRYPTO_SHA1
|
2011-05-15 09:37:35 +00:00
|
|
|
FILES:=$(LINUX_DIR)/crypto/sha1_generic.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,09,sha1_generic)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/crypto)
|
2007-09-23 15:12:12 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-sha1))
|
|
|
|
|
2013-07-26 01:09:50 +00:00
|
|
|
|
2013-01-01 19:04:17 +00:00
|
|
|
define KernelPackage/crypto-sha256
|
|
|
|
TITLE:=SHA224 SHA256 digest CryptoAPI module
|
|
|
|
DEPENDS:=+kmod-crypto-hash
|
|
|
|
KCONFIG:=CONFIG_CRYPTO_SHA256
|
|
|
|
FILES:=$(LINUX_DIR)/crypto/sha256_generic.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,09,sha256_generic)
|
|
|
|
$(call AddDepends/crypto)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-sha256))
|
|
|
|
|
2013-07-26 01:09:50 +00:00
|
|
|
|
2007-09-23 15:12:12 +00:00
|
|
|
define KernelPackage/crypto-misc
|
|
|
|
TITLE:=Other CryptoAPI modules
|
2011-03-25 21:28:44 +00:00
|
|
|
DEPENDS:=+kmod-crypto-manager
|
2007-09-23 15:12:12 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_CRYPTO_ANUBIS \
|
|
|
|
CONFIG_CRYPTO_BLOWFISH \
|
|
|
|
CONFIG_CRYPTO_CAMELLIA \
|
|
|
|
CONFIG_CRYPTO_CAST5 \
|
|
|
|
CONFIG_CRYPTO_CAST6 \
|
|
|
|
CONFIG_CRYPTO_FCRYPT \
|
|
|
|
CONFIG_CRYPTO_KHAZAD \
|
|
|
|
CONFIG_CRYPTO_SERPENT \
|
|
|
|
CONFIG_CRYPTO_SHA512 \
|
|
|
|
CONFIG_CRYPTO_TEA \
|
|
|
|
CONFIG_CRYPTO_TGR192 \
|
|
|
|
CONFIG_CRYPTO_TWOFISH \
|
2010-03-21 14:07:30 +00:00
|
|
|
CONFIG_CRYPTO_TWOFISH_COMMON \
|
2007-09-23 15:12:12 +00:00
|
|
|
CONFIG_CRYPTO_TWOFISH_586 \
|
|
|
|
CONFIG_CRYPTO_WP512
|
|
|
|
FILES:= \
|
2010-07-12 14:06:13 +00:00
|
|
|
$(LINUX_DIR)/crypto/anubis.ko \
|
2015-01-24 22:13:22 +00:00
|
|
|
$(LINUX_DIR)/crypto/camellia_generic.ko \
|
|
|
|
$(LINUX_DIR)/crypto/cast_common.ko \
|
|
|
|
$(LINUX_DIR)/crypto/cast5_generic.ko \
|
|
|
|
$(LINUX_DIR)/crypto/cast6_generic.ko \
|
2010-07-12 14:06:13 +00:00
|
|
|
$(LINUX_DIR)/crypto/khazad.ko \
|
2011-05-15 09:37:35 +00:00
|
|
|
$(LINUX_DIR)/crypto/sha512_generic.ko \
|
2010-07-12 14:06:13 +00:00
|
|
|
$(LINUX_DIR)/crypto/tea.ko \
|
2011-05-15 09:37:28 +00:00
|
|
|
$(LINUX_DIR)/crypto/tgr192.ko \
|
|
|
|
$(LINUX_DIR)/crypto/twofish_common.ko \
|
2012-05-17 15:28:02 +00:00
|
|
|
$(LINUX_DIR)/crypto/wp512.ko \
|
2013-07-19 15:01:22 +00:00
|
|
|
$(LINUX_DIR)/crypto/twofish_generic.ko \
|
2012-01-19 08:25:26 +00:00
|
|
|
$(LINUX_DIR)/crypto/blowfish_common.ko \
|
2012-05-27 15:22:13 +00:00
|
|
|
$(LINUX_DIR)/crypto/blowfish_generic.ko \
|
2013-07-19 15:01:22 +00:00
|
|
|
$(LINUX_DIR)/crypto/serpent_generic.ko
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/crypto)
|
2007-09-23 15:12:12 +00:00
|
|
|
endef
|
|
|
|
|
2015-03-29 04:32:01 +00:00
|
|
|
ifndef CONFIG_TARGET_x86_64
|
|
|
|
define KernelPackage/crypto-misc/x86
|
|
|
|
FILES+=$(LINUX_DIR)/arch/x86/crypto/twofish-i586.ko
|
|
|
|
endef
|
|
|
|
endif
|
2010-03-21 14:07:30 +00:00
|
|
|
|
2007-09-23 15:12:12 +00:00
|
|
|
$(eval $(call KernelPackage,crypto-misc))
|
|
|
|
|
2010-01-22 08:18:04 +00:00
|
|
|
|
2008-07-13 15:16:54 +00:00
|
|
|
define KernelPackage/crypto-ocf
|
|
|
|
TITLE:=OCF modules
|
2012-07-11 23:38:16 +00:00
|
|
|
DEPENDS:=+@OPENSSL_ENGINE_CRYPTO @!TARGET_uml +kmod-crypto-manager
|
2008-07-13 15:16:54 +00:00
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_OCF_OCF \
|
|
|
|
CONFIG_OCF_CRYPTODEV \
|
|
|
|
CONFIG_OCF_CRYPTOSOFT \
|
|
|
|
CONFIG_OCF_FIPS=y \
|
|
|
|
CONFIG_OCF_RANDOMHARVEST=y
|
|
|
|
FILES:= \
|
2010-07-12 14:06:13 +00:00
|
|
|
$(LINUX_DIR)/crypto/ocf/ocf.ko \
|
|
|
|
$(LINUX_DIR)/crypto/ocf/cryptodev.ko \
|
|
|
|
$(LINUX_DIR)/crypto/ocf/cryptosoft.ko
|
2008-07-13 15:16:54 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,09, \
|
|
|
|
ocf \
|
|
|
|
cryptodev \
|
|
|
|
cryptosoft \
|
|
|
|
)
|
2010-04-29 04:04:19 +00:00
|
|
|
$(call AddDepends/crypto)
|
2008-07-13 15:16:54 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-ocf))
|
|
|
|
|
2007-09-23 15:12:12 +00:00
|
|
|
|
2010-05-04 21:01:24 +00:00
|
|
|
define KernelPackage/crypto-ocf-hifn7751
|
|
|
|
TITLE:=OCF support for Hifn 6500/7751/7811/795x, Invertex AEON and NetSec 7751 devices
|
2012-07-11 23:38:16 +00:00
|
|
|
DEPENDS:=+@OPENSSL_ENGINE_CRYPTO @PCI_SUPPORT @!TARGET_uml kmod-crypto-ocf
|
2010-05-04 21:01:24 +00:00
|
|
|
KCONFIG:=CONFIG_OCF_HIFN
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/crypto/ocf/hifn/hifn7751.ko
|
2010-05-04 21:01:24 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,10,hifn7751)
|
|
|
|
$(call AddDepends/crypto)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-ocf-hifn7751))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/crypto-ocf-hifnhipp
|
|
|
|
TITLE:=OCF support for Hifn 7855/8155 devices
|
2012-07-11 23:38:16 +00:00
|
|
|
DEPENDS:=+@OPENSSL_ENGINE_CRYPTO @PCI_SUPPORT @!TARGET_uml kmod-crypto-ocf
|
2010-05-04 21:01:24 +00:00
|
|
|
KCONFIG:=CONFIG_OCF_HIFNHIPP
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/crypto/ocf/hifn/hifnHIPP.ko
|
2011-07-24 15:08:17 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,10,hifnHIPP)
|
2010-05-04 21:01:24 +00:00
|
|
|
$(call AddDepends/crypto)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-ocf-hifnhipp))
|
|
|
|
|
|
|
|
|
2007-09-23 15:12:12 +00:00
|
|
|
define KernelPackage/crypto-null
|
|
|
|
TITLE:=Null CryptoAPI module
|
|
|
|
KCONFIG:=CONFIG_CRYPTO_NULL
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/crypto/crypto_null.ko
|
2007-09-23 15:12:12 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,09,crypto_null)
|
2013-07-18 13:08:27 +00:00
|
|
|
$(call AddDepends/crypto,+kmod-crypto-manager)
|
2007-09-23 15:12:12 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-null))
|
|
|
|
|
|
|
|
|
|
|
|
define KernelPackage/crypto-test
|
|
|
|
TITLE:=Test CryptoAPI module
|
2008-02-06 13:04:26 +00:00
|
|
|
KCONFIG:=CONFIG_CRYPTO_TEST
|
2010-07-12 14:06:13 +00:00
|
|
|
FILES:=$(LINUX_DIR)/crypto/tcrypt.ko
|
2013-07-18 13:08:27 +00:00
|
|
|
$(call AddDepends/crypto,+kmod-crypto-manager)
|
2007-09-23 15:12:12 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-test))
|
|
|
|
|
2010-09-04 18:06:24 +00:00
|
|
|
|
|
|
|
define KernelPackage/crypto-xts
|
|
|
|
TITLE:=XTS cipher CryptoAPI module
|
2015-01-05 13:02:01 +00:00
|
|
|
DEPENDS:=+kmod-crypto-gf128 +kmod-crypto-manager
|
|
|
|
KCONFIG:=CONFIG_CRYPTO_XTS
|
|
|
|
FILES:=$(LINUX_DIR)/crypto/xts.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,09,xts)
|
2010-09-04 18:06:24 +00:00
|
|
|
$(call AddDepends/crypto)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,crypto-xts))
|
2010-10-04 21:33:07 +00:00
|
|
|
|
2013-07-26 01:09:50 +00:00
|
|
|
|
2010-10-10 17:38:11 +00:00
|
|
|
define KernelPackage/crypto-mv-cesa
|
2011-04-02 19:31:21 +00:00
|
|
|
TITLE:=Marvell crypto engine
|
2015-07-24 15:36:08 +00:00
|
|
|
DEPENDS:=+kmod-crypto-manager @TARGET_kirkwood||TARGET_orion||TARGET_mvebu
|
2011-04-02 19:31:21 +00:00
|
|
|
KCONFIG:=CONFIG_CRYPTO_DEV_MV_CESA
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/crypto/mv_cesa.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,09,mv_cesa)
|
|
|
|
$(call AddDepends/crypto)
|
2010-10-04 21:33:07 +00:00
|
|
|
endef
|
|
|
|
|
2010-10-10 17:38:11 +00:00
|
|
|
$(eval $(call KernelPackage,crypto-mv-cesa))
|