Makefile.objs 829 字节
Newer Older
1 2 3 4 5
crypto-obj-y = init.o
crypto-obj-y += hash.o
crypto-obj-y += aes.o
crypto-obj-y += desrfb.o
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 12
crypto-obj-$(CONFIG_GCRYPT) += random-gcrypt.o
crypto-obj-$(if $(CONFIG_GCRYPT),n,$(CONFIG_GNUTLS_RND)) += random-gnutls.o
13 14 15
crypto-obj-y += pbkdf.o
crypto-obj-$(CONFIG_NETTLE) += pbkdf-nettle.o
crypto-obj-$(if $(CONFIG_NETTLE),n,$(CONFIG_GCRYPT_KDF)) += pbkdf-gcrypt.o
16 17 18 19
crypto-obj-y += ivgen.o
crypto-obj-y += ivgen-essiv.o
crypto-obj-y += ivgen-plain.o
crypto-obj-y += ivgen-plain64.o
20
crypto-obj-y += afsplit.o
21
crypto-obj-y += xts.o
22 23 24

# Let the userspace emulators avoid linking gnutls/etc
crypto-aes-obj-y = aes.o
25 26

stub-obj-y += random-stub.o
27
stub-obj-y += pbkdf-stub.o