]> git.proxmox.com Git - mirror_qemu.git/blob - crypto/Makefile.objs
crypto: add support for PBKDF2 algorithm
[mirror_qemu.git] / crypto / Makefile.objs
1 crypto-obj-y = init.o
2 crypto-obj-y += hash.o
3 crypto-obj-y += aes.o
4 crypto-obj-y += desrfb.o
5 crypto-obj-y += cipher.o
6 crypto-obj-y += tlscreds.o
7 crypto-obj-y += tlscredsanon.o
8 crypto-obj-y += tlscredsx509.o
9 crypto-obj-y += tlssession.o
10 crypto-obj-y += secret.o
11 crypto-obj-$(CONFIG_GCRYPT) += random-gcrypt.o
12 crypto-obj-$(if $(CONFIG_GCRYPT),n,$(CONFIG_GNUTLS_RND)) += random-gnutls.o
13 crypto-obj-y += pbkdf.o
14 crypto-obj-$(CONFIG_NETTLE) += pbkdf-nettle.o
15 crypto-obj-$(if $(CONFIG_NETTLE),n,$(CONFIG_GCRYPT_KDF)) += pbkdf-gcrypt.o
16
17 # Let the userspace emulators avoid linking gnutls/etc
18 crypto-aes-obj-y = aes.o
19
20 stub-obj-y += random-stub.o
21 stub-obj-y += pbkdf-stub.o