mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
e6e6600c00
ccree had a mechanism for IV generation which was not compatible with the Linux seqiv or echainiv iv generator and was never used in any of the upstream versions so drop all the code implementing it. Signed-off-by: Gilad Ben-Yossef <gilad@benyossef.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
8 lines
351 B
Makefile
8 lines
351 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2012-2019 ARM Limited (or its affiliates).
|
|
|
|
obj-$(CONFIG_CRYPTO_DEV_CCREE) := ccree.o
|
|
ccree-y := cc_driver.o cc_buffer_mgr.o cc_request_mgr.o cc_cipher.o cc_hash.o cc_aead.o cc_sram_mgr.o
|
|
ccree-$(CONFIG_CRYPTO_FIPS) += cc_fips.o
|
|
ccree-$(CONFIG_DEBUG_FS) += cc_debugfs.o
|
|
ccree-$(CONFIG_PM) += cc_pm.o
|