49525e5eec
This patch adds the various helper functions needed for authentication support. We need functions to hash nodes, to embed HMACs into a node and to compare hashes and HMACs. Most functions first check if this filesystem is authenticated and bail out early if not, which makes the functions safe to be called with disabled authentication. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> Signed-off-by: Richard Weinberger <richard@nod.at>
12 lines
490 B
Makefile
12 lines
490 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_UBIFS_FS) += ubifs.o
|
|
|
|
ubifs-y += shrinker.o journal.o file.o dir.o super.o sb.o io.o
|
|
ubifs-y += tnc.o master.o scan.o replay.o log.o commit.o gc.o orphan.o
|
|
ubifs-y += budget.o find.o tnc_commit.o compress.o lpt.o lprops.o
|
|
ubifs-y += recovery.o ioctl.o lpt_commit.o tnc_misc.o debug.o
|
|
ubifs-y += misc.o
|
|
ubifs-$(CONFIG_UBIFS_FS_ENCRYPTION) += crypto.o
|
|
ubifs-$(CONFIG_UBIFS_FS_XATTR) += xattr.o
|
|
ubifs-$(CONFIG_UBIFS_FS_AUTHENTICATION) += auth.o
|