]> git.proxmox.com Git - mirror_qemu.git/blame - crypto/Makefile.objs
tpm: remove unnecessary #ifdef CONFIG_TPM
[mirror_qemu.git] / crypto / Makefile.objs
CommitLineData
fb37726d
DB
1crypto-obj-y = init.o
2crypto-obj-y += hash.o
0c16c056
DB
3crypto-obj-$(CONFIG_NETTLE) += hash-nettle.o
4crypto-obj-$(if $(CONFIG_NETTLE),n,$(CONFIG_GCRYPT)) += hash-gcrypt.o
2165477c 5crypto-obj-$(if $(CONFIG_NETTLE),n,$(if $(CONFIG_GCRYPT),n,y)) += hash-glib.o
12a4f216
LM
6crypto-obj-y += hmac.o
7crypto-obj-$(CONFIG_NETTLE) += hmac-nettle.o
8crypto-obj-$(CONFIG_GCRYPT_HMAC) += hmac-gcrypt.o
9crypto-obj-$(if $(CONFIG_NETTLE),n,$(if $(CONFIG_GCRYPT_HMAC),n,y)) += hmac-glib.o
fb37726d
DB
10crypto-obj-y += aes.o
11crypto-obj-y += desrfb.o
12crypto-obj-y += cipher.o
f0d92b56 13crypto-obj-$(CONFIG_AF_ALG) += afalg.o
25c60df3 14crypto-obj-$(CONFIG_AF_ALG) += cipher-afalg.o
9a059773 15crypto-obj-$(CONFIG_AF_ALG) += hash-afalg.o
a090187d 16crypto-obj-y += tlscreds.o
e00adf6c 17crypto-obj-y += tlscredsanon.o
85bcbc78 18crypto-obj-y += tlscredsx509.o
d321e1e5 19crypto-obj-y += tlssession.o
ac1d8878 20crypto-obj-y += secret.o
b917da4c
DB
21crypto-obj-$(CONFIG_GCRYPT) += random-gcrypt.o
22crypto-obj-$(if $(CONFIG_GCRYPT),n,$(CONFIG_GNUTLS_RND)) += random-gnutls.o
f3c8355c 23crypto-obj-$(if $(CONFIG_GCRYPT),n,$(if $(CONFIG_GNUTLS_RND),n,y)) += random-platform.o
37788f25 24crypto-obj-y += pbkdf.o
fff2f982
DB
25crypto-obj-$(CONFIG_NETTLE_KDF) += pbkdf-nettle.o
26crypto-obj-$(if $(CONFIG_NETTLE_KDF),n,$(CONFIG_GCRYPT_KDF)) += pbkdf-gcrypt.o
cb730894
DB
27crypto-obj-y += ivgen.o
28crypto-obj-y += ivgen-essiv.o
29crypto-obj-y += ivgen-plain.o
30crypto-obj-y += ivgen-plain64.o
5a95e0fc 31crypto-obj-y += afsplit.o
84f7f180 32crypto-obj-y += xts.o
7d969014
DB
33crypto-obj-y += block.o
34crypto-obj-y += block-qcow.o
3e308f20 35crypto-obj-y += block-luks.o
fb37726d
DB
36
37# Let the userspace emulators avoid linking gnutls/etc
38crypto-aes-obj-y = aes.o
b917da4c 39
37788f25 40stub-obj-y += pbkdf-stub.o