qemu/crypto/Makefile.objs
<<
>>
Prefs
   1crypto-obj-y = init.o
   2crypto-obj-y += hash.o
   3crypto-obj-$(CONFIG_NETTLE) += hash-nettle.o
   4crypto-obj-$(if $(CONFIG_NETTLE),n,$(CONFIG_GCRYPT)) += hash-gcrypt.o
   5crypto-obj-$(if $(CONFIG_NETTLE),n,$(if $(CONFIG_GCRYPT),n,y)) += hash-glib.o
   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
  10crypto-obj-y += aes.o
  11crypto-obj-y += desrfb.o
  12crypto-obj-y += cipher.o
  13crypto-obj-$(CONFIG_AF_ALG) += afalg.o
  14crypto-obj-$(CONFIG_AF_ALG) += cipher-afalg.o
  15crypto-obj-$(CONFIG_AF_ALG) += hash-afalg.o
  16crypto-obj-y += tlscreds.o
  17crypto-obj-y += tlscredsanon.o
  18crypto-obj-y += tlscredspsk.o
  19crypto-obj-y += tlscredsx509.o
  20crypto-obj-y += tlssession.o
  21crypto-obj-y += secret.o
  22crypto-obj-$(CONFIG_GCRYPT) += random-gcrypt.o
  23crypto-obj-$(if $(CONFIG_GCRYPT),n,$(CONFIG_GNUTLS_RND)) += random-gnutls.o
  24crypto-obj-$(if $(CONFIG_GCRYPT),n,$(if $(CONFIG_GNUTLS_RND),n,y)) += random-platform.o
  25crypto-obj-y += pbkdf.o
  26crypto-obj-$(CONFIG_NETTLE_KDF) += pbkdf-nettle.o
  27crypto-obj-$(if $(CONFIG_NETTLE_KDF),n,$(CONFIG_GCRYPT_KDF)) += pbkdf-gcrypt.o
  28crypto-obj-y += ivgen.o
  29crypto-obj-y += ivgen-essiv.o
  30crypto-obj-y += ivgen-plain.o
  31crypto-obj-y += ivgen-plain64.o
  32crypto-obj-y += afsplit.o
  33crypto-obj-y += xts.o
  34crypto-obj-y += block.o
  35crypto-obj-y += block-qcow.o
  36crypto-obj-y += block-luks.o
  37
  38# Let the userspace emulators avoid linking gnutls/etc
  39crypto-aes-obj-y = aes.o
  40
  41stub-obj-y += pbkdf-stub.o
  42