Makefile.objs 1.0 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-y += pbkdf.o
16 17
crypto-obj-$(CONFIG_NETTLE_KDF) += pbkdf-nettle.o
crypto-obj-$(if $(CONFIG_NETTLE_KDF),n,$(CONFIG_GCRYPT_KDF)) += pbkdf-gcrypt.o
18 19 20 21
crypto-obj-y += ivgen.o
crypto-obj-y += ivgen-essiv.o
crypto-obj-y += ivgen-plain.o
crypto-obj-y += ivgen-plain64.o
22
crypto-obj-y += afsplit.o
23
crypto-obj-y += xts.o
24 25
crypto-obj-y += block.o
crypto-obj-y += block-qcow.o
26
crypto-obj-y += block-luks.o
27 28 29

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

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