mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-01-05 14:16:17 +00:00
create crypto packages for aead and authenc
SVN-Revision: 11774
This commit is contained in:
parent
53d4a4018d
commit
a4d444f859
@ -97,6 +97,28 @@ endef
|
||||
$(eval $(call KernelPackage,crypto-arc4))
|
||||
|
||||
|
||||
define KernelPackage/crypto-aead
|
||||
SUBMENU:=$(CRYPTO_MENU)
|
||||
TITLE:=Authenticated Encryption with Associated Data
|
||||
DEPENDS:=+kmod-crypto-core
|
||||
KCONFIG:=CONFIG_CRYPTO_AEAD
|
||||
FILES:=$(LINUX_DIR)/crypto/aead.$(LINUX_KMOD_SUFFIX)
|
||||
AUTOLOAD:=$(call AutoLoad,09,aead)
|
||||
endef
|
||||
|
||||
$(eval $(call KernelPackage,crypto-aead))
|
||||
|
||||
define KernelPackage/crypto-authenc
|
||||
SUBMENU:=$(CRYPTO_MENU)
|
||||
TITLE:=Combined mode wrapper for IPsec
|
||||
DEPENDS:=+kmod-crypto-core +kmod-crypto-aead
|
||||
KCONFIG:=CONFIG_CRYPTO_AUTHENC
|
||||
FILES:=$(LINUX_DIR)/crypto/authenc.$(LINUX_KMOD_SUFFIX)
|
||||
AUTOLOAD:=$(call AutoLoad,09,authenc)
|
||||
endef
|
||||
|
||||
$(eval $(call KernelPackage,crypto-authenc))
|
||||
|
||||
define KernelPackage/crypto-des
|
||||
SUBMENU:=$(CRYPTO_MENU)
|
||||
TITLE:=DES/3DES cipher CryptoAPI module
|
||||
|
Loading…
Reference in New Issue
Block a user