Makefile.objs 1.1 KB
Newer Older
1 2
crypto-obj-y = init.o
crypto-obj-y += hash.o
3 4
crypto-obj-$(CONFIG_NETTLE) += hash-nettle.o
crypto-obj-$(if $(CONFIG_NETTLE),n,$(CONFIG_GCRYPT)) += hash-gcrypt.o
5 6 7
crypto-obj-y += aes.o
crypto-obj-y += desrfb.o
crypto-obj-y += cipher.o
8
crypto-obj-y += tlscreds.o
9
crypto-obj-y += tlscredsanon.o
10
crypto-obj-y += tlscredsx509.o
11
crypto-obj-y += tlssession.o
12
crypto-obj-y += secret.o
13 14
crypto-obj-$(CONFIG_GCRYPT) += random-gcrypt.o
crypto-obj-$(if $(CONFIG_GCRYPT),n,$(CONFIG_GNUTLS_RND)) += random-gnutls.o
15
crypto-obj-$(if $(CONFIG_GCRYPT),n,$(if $(CONFIG_GNUTLS_RND),n,y)) += random-platform.o
16
crypto-obj-y += pbkdf.o
17 18
crypto-obj-$(CONFIG_NETTLE_KDF) += pbkdf-nettle.o
crypto-obj-$(if $(CONFIG_NETTLE_KDF),n,$(CONFIG_GCRYPT_KDF)) += pbkdf-gcrypt.o
19 20 21 22
crypto-obj-y += ivgen.o
crypto-obj-y += ivgen-essiv.o
crypto-obj-y += ivgen-plain.o
crypto-obj-y += ivgen-plain64.o
23
crypto-obj-y += afsplit.o
24
crypto-obj-y += xts.o
25 26
crypto-obj-y += block.o
crypto-obj-y += block-qcow.o
27
crypto-obj-y += block-luks.o
28 29 30

# Let the userspace emulators avoid linking gnutls/etc
crypto-aes-obj-y = aes.o
31

32
stub-obj-y += pbkdf-stub.o
33
stub-obj-y += hash-stub.o