]> git.proxmox.com Git - mirror_qemu.git/blame - crypto/Makefile.objs
i386: Update new x86_apicid parsing rules with die_offset support
[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
e1a6dc91 18crypto-obj-y += tlscredspsk.o
85bcbc78 19crypto-obj-y += tlscredsx509.o
d321e1e5 20crypto-obj-y += tlssession.o
ac1d8878 21crypto-obj-y += secret.o
243dc2cf
RH
22crypto-rng-obj-$(CONFIG_GCRYPT) += random-gcrypt.o
23crypto-rng-obj-$(if $(CONFIG_GCRYPT),n,$(CONFIG_GNUTLS)) += random-gnutls.o
24crypto-rng-obj-$(if $(CONFIG_GCRYPT),n,$(if $(CONFIG_GNUTLS),n,y)) += random-platform.o
25crypto-obj-y += $(crypto-rng-obj-y)
37788f25 26crypto-obj-y += pbkdf.o
64dd2f3b
DB
27crypto-obj-$(CONFIG_NETTLE) += pbkdf-nettle.o
28crypto-obj-$(if $(CONFIG_NETTLE),n,$(CONFIG_GCRYPT)) += pbkdf-gcrypt.o
cb730894
DB
29crypto-obj-y += ivgen.o
30crypto-obj-y += ivgen-essiv.o
31crypto-obj-y += ivgen-plain.o
32crypto-obj-y += ivgen-plain64.o
5a95e0fc 33crypto-obj-y += afsplit.o
84f7f180 34crypto-obj-y += xts.o
7d969014
DB
35crypto-obj-y += block.o
36crypto-obj-y += block-qcow.o
3e308f20 37crypto-obj-y += block-luks.o
fb37726d 38
243dc2cf
RH
39# Let the userspace emulators avoid linking stuff they won't use.
40crypto-user-obj-y = aes.o $(crypto-rng-obj-y) init.o
b917da4c 41
37788f25 42stub-obj-y += pbkdf-stub.o