]> git.proxmox.com Git - mirror_qemu.git/blame - crypto/Makefile.objs
main-loop: Acquire main_context lock around os_host_main_loop_wait.
[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
a090187d 13crypto-obj-y += tlscreds.o
e00adf6c 14crypto-obj-y += tlscredsanon.o
85bcbc78 15crypto-obj-y += tlscredsx509.o
d321e1e5 16crypto-obj-y += tlssession.o
ac1d8878 17crypto-obj-y += secret.o
b917da4c
DB
18crypto-obj-$(CONFIG_GCRYPT) += random-gcrypt.o
19crypto-obj-$(if $(CONFIG_GCRYPT),n,$(CONFIG_GNUTLS_RND)) += random-gnutls.o
f3c8355c 20crypto-obj-$(if $(CONFIG_GCRYPT),n,$(if $(CONFIG_GNUTLS_RND),n,y)) += random-platform.o
37788f25 21crypto-obj-y += pbkdf.o
fff2f982
DB
22crypto-obj-$(CONFIG_NETTLE_KDF) += pbkdf-nettle.o
23crypto-obj-$(if $(CONFIG_NETTLE_KDF),n,$(CONFIG_GCRYPT_KDF)) += pbkdf-gcrypt.o
cb730894
DB
24crypto-obj-y += ivgen.o
25crypto-obj-y += ivgen-essiv.o
26crypto-obj-y += ivgen-plain.o
27crypto-obj-y += ivgen-plain64.o
5a95e0fc 28crypto-obj-y += afsplit.o
84f7f180 29crypto-obj-y += xts.o
7d969014
DB
30crypto-obj-y += block.o
31crypto-obj-y += block-qcow.o
3e308f20 32crypto-obj-y += block-luks.o
fb37726d
DB
33
34# Let the userspace emulators avoid linking gnutls/etc
35crypto-aes-obj-y = aes.o
b917da4c 36
37788f25 37stub-obj-y += pbkdf-stub.o