block/amend: separate amend and create options for qemu-img
[qemu/ar7.git] / crypto / Makefile.objs
blob707c02ad376a010d7ffa802a6df08dbe1683af15
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_common.o
22 crypto-obj-y += secret.o
23 crypto-obj-$(CONFIG_SECRET_KEYRING) += secret_keyring.o
24 crypto-obj-y += pbkdf.o
25 crypto-obj-$(CONFIG_NETTLE) += pbkdf-nettle.o
26 crypto-obj-$(if $(CONFIG_NETTLE),n,$(CONFIG_GCRYPT)) += pbkdf-gcrypt.o
27 crypto-obj-$(if $(CONFIG_NETTLE),n,$(if $(CONFIG_GCRYPT),n,y)) += pbkdf-stub.o
28 crypto-obj-y += ivgen.o
29 crypto-obj-y += ivgen-essiv.o
30 crypto-obj-y += ivgen-plain.o
31 crypto-obj-y += ivgen-plain64.o
32 crypto-obj-y += afsplit.o
33 crypto-obj-$(CONFIG_QEMU_PRIVATE_XTS) += xts.o
34 crypto-obj-y += block.o
35 crypto-obj-y += block-qcow.o
36 crypto-obj-y += block-luks.o
38 util-obj-$(CONFIG_GCRYPT) += random-gcrypt.o
39 util-obj-$(if $(CONFIG_GCRYPT),n,$(CONFIG_GNUTLS)) += random-gnutls.o
40 util-obj-$(if $(CONFIG_GCRYPT),n,$(if $(CONFIG_GNUTLS),n,$(CONFIG_RNG_NONE))) += random-none.o
41 util-obj-$(if $(CONFIG_GCRYPT),n,$(if $(CONFIG_GNUTLS),n,$(if $(CONFIG_RNG_NONE),n,y))) += random-platform.o
42 util-obj-y += aes.o init.o