create crypto packages for aead and authenc
SVN-Revision: 11774
This commit is contained in:
parent
53d4a4018d
commit
a4d444f859
1 changed files with 22 additions and 0 deletions
|
@ -97,6 +97,28 @@ endef
|
||||||
$(eval $(call KernelPackage,crypto-arc4))
|
$(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
|
define KernelPackage/crypto-des
|
||||||
SUBMENU:=$(CRYPTO_MENU)
|
SUBMENU:=$(CRYPTO_MENU)
|
||||||
TITLE:=DES/3DES cipher CryptoAPI module
|
TITLE:=DES/3DES cipher CryptoAPI module
|
||||||
|
|
Loading…
Reference in a new issue