]> git.proxmox.com Git - mirror_qemu.git/blame - crypto/Makefile.objs
Merge remote-tracking branch 'remotes/ehabkost/tags/machine-next-pull-request' into...
[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
b917da4c 22crypto-obj-$(CONFIG_GCRYPT) += random-gcrypt.o
a0722409
DB
23crypto-obj-$(if $(CONFIG_GCRYPT),n,$(CONFIG_GNUTLS)) += random-gnutls.o
24crypto-obj-$(if $(CONFIG_GCRYPT),n,$(if $(CONFIG_GNUTLS),n,y)) += random-platform.o
37788f25 25crypto-obj-y += pbkdf.o
64dd2f3b
DB
26crypto-obj-$(CONFIG_NETTLE) += pbkdf-nettle.o
27crypto-obj-$(if $(CONFIG_NETTLE),n,$(CONFIG_GCRYPT)) += pbkdf-gcrypt.o
cb730894
DB
28crypto-obj-y += ivgen.o
29crypto-obj-y += ivgen-essiv.o
30crypto-obj-y += ivgen-plain.o
31crypto-obj-y += ivgen-plain64.o
5a95e0fc 32crypto-obj-y += afsplit.o
84f7f180 33crypto-obj-y += xts.o
7d969014
DB
34crypto-obj-y += block.o
35crypto-obj-y += block-qcow.o
3e308f20 36crypto-obj-y += block-luks.o
fb37726d
DB
37
38# Let the userspace emulators avoid linking gnutls/etc
39crypto-aes-obj-y = aes.o
b917da4c 40
37788f25 41stub-obj-y += pbkdf-stub.o