Merge remote-tracking branch 'remotes/jnsnow/tags/bitmaps-pull-request' into staging
[qemu/ar7.git] / crypto / Makefile.objs
blob7fe2fa9da250218f823e8cc42109d2af948f2cce
1 crypto-obj-y = init.o
2 crypto-obj-y += hash.o
3 crypto-obj-$(CONFIG_NETTLE) += hash-nettle.o
4 crypto-obj-$(if $(CONFIG_NETTLE),n,$(CONFIG_GCRYPT)) += hash-gcrypt.o
5 crypto-obj-$(if $(CONFIG_NETTLE),n,$(if $(CONFIG_GCRYPT),n,y)) += hash-glib.o
6 crypto-obj-y += hmac.o
7 crypto-obj-$(CONFIG_NETTLE) += hmac-nettle.o
8 crypto-obj-$(CONFIG_GCRYPT_HMAC) += hmac-gcrypt.o
9 crypto-obj-$(if $(CONFIG_NETTLE),n,$(if $(CONFIG_GCRYPT_HMAC),n,y)) += hmac-glib.o
10 crypto-obj-y += aes.o
11 crypto-obj-y += desrfb.o
12 crypto-obj-y += cipher.o
13 crypto-obj-$(CONFIG_AF_ALG) += afalg.o
14 crypto-obj-$(CONFIG_AF_ALG) += cipher-afalg.o
15 crypto-obj-$(CONFIG_AF_ALG) += hash-afalg.o
16 crypto-obj-y += tlscreds.o
17 crypto-obj-y += tlscredsanon.o
18 crypto-obj-y += tlscredspsk.o
19 crypto-obj-y += tlscredsx509.o
20 crypto-obj-y += tlssession.o
21 crypto-obj-y += secret.o
22 crypto-rng-obj-$(CONFIG_GCRYPT) += random-gcrypt.o
23 crypto-rng-obj-$(if $(CONFIG_GCRYPT),n,$(CONFIG_GNUTLS)) += random-gnutls.o
24 crypto-rng-obj-$(if $(CONFIG_GCRYPT),n,$(if $(CONFIG_GNUTLS),n,y)) += random-platform.o
25 crypto-obj-y += $(crypto-rng-obj-y)
26 crypto-obj-y += pbkdf.o
27 crypto-obj-$(CONFIG_NETTLE) += pbkdf-nettle.o
28 crypto-obj-$(if $(CONFIG_NETTLE),n,$(CONFIG_GCRYPT)) += pbkdf-gcrypt.o
29 crypto-obj-y += ivgen.o
30 crypto-obj-y += ivgen-essiv.o
31 crypto-obj-y += ivgen-plain.o
32 crypto-obj-y += ivgen-plain64.o
33 crypto-obj-y += afsplit.o
34 crypto-obj-y += xts.o
35 crypto-obj-y += block.o
36 crypto-obj-y += block-qcow.o
37 crypto-obj-y += block-luks.o
39 # Let the userspace emulators avoid linking stuff they won't use.
40 crypto-user-obj-y = aes.o $(crypto-rng-obj-y) init.o
42 stub-obj-y += pbkdf-stub.o