xref: /openbmc/linux/crypto/Makefile (revision f8246af0)
11da177e4SLinus Torvalds#
21da177e4SLinus Torvalds# Cryptographic API
31da177e4SLinus Torvalds#
41da177e4SLinus Torvalds
5e962a653SHerbert Xuobj-$(CONFIG_CRYPTO) += api.o cipher.o digest.o compress.o
61da177e4SLinus Torvalds
7cce9e06dSHerbert Xucrypto_algapi-$(CONFIG_PROC_FS) += proc.o
8e962a653SHerbert Xucrypto_algapi-objs := algapi.o scatterwalk.o $(crypto_algapi-y)
9cce9e06dSHerbert Xuobj-$(CONFIG_CRYPTO_ALGAPI) += crypto_algapi.o
101da177e4SLinus Torvalds
11b5b7f088SHerbert Xuobj-$(CONFIG_CRYPTO_ABLKCIPHER) += ablkcipher.o
121ae97820SHerbert Xuobj-$(CONFIG_CRYPTO_AEAD) += aead.o
135cde0af2SHerbert Xuobj-$(CONFIG_CRYPTO_BLKCIPHER) += blkcipher.o
145cde0af2SHerbert Xu
15055bcee3SHerbert Xucrypto_hash-objs := hash.o
16055bcee3SHerbert Xuobj-$(CONFIG_CRYPTO_HASH) += crypto_hash.o
17055bcee3SHerbert Xu
182b8c19dbSHerbert Xuobj-$(CONFIG_CRYPTO_MANAGER) += cryptomgr.o
191da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_HMAC) += hmac.o
20333b0d7eSKazunori MIYAZAWAobj-$(CONFIG_CRYPTO_XCBC) += xcbc.o
211da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_NULL) += crypto_null.o
221da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_MD4) += md4.o
231da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_MD5) += md5.o
241da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_SHA1) += sha1.o
251da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_SHA256) += sha256.o
261da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_SHA512) += sha512.o
271da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_WP512) += wp512.o
281da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_TGR192) += tgr192.o
29c494e070SRik Snelobj-$(CONFIG_CRYPTO_GF128MUL) += gf128mul.o
30db131ef9SHerbert Xuobj-$(CONFIG_CRYPTO_ECB) += ecb.o
31db131ef9SHerbert Xuobj-$(CONFIG_CRYPTO_CBC) += cbc.o
3291652be5SDavid Howellsobj-$(CONFIG_CRYPTO_PCBC) += pcbc.o
3364470f1bSRik Snelobj-$(CONFIG_CRYPTO_LRW) += lrw.o
34f19f5111SRik Snelobj-$(CONFIG_CRYPTO_XTS) += xts.o
35124b53d0SHerbert Xuobj-$(CONFIG_CRYPTO_CRYPTD) += cryptd.o
36c5a511f1SSebastian Siewiorobj-$(CONFIG_CRYPTO_DES) += des_generic.o
3790831639SDavid Howellsobj-$(CONFIG_CRYPTO_FCRYPT) += fcrypt.o
381da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_BLOWFISH) += blowfish.o
391da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_TWOFISH) += twofish.o
402729bb42SJoachim Fritschiobj-$(CONFIG_CRYPTO_TWOFISH_COMMON) += twofish_common.o
411da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_SERPENT) += serpent.o
42f8246af0SSebastian Siewiorobj-$(CONFIG_CRYPTO_AES) += aes_generic.o
43d64beac0SNoriaki TAKAMIYAobj-$(CONFIG_CRYPTO_CAMELLIA) += camellia.o
441da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_CAST5) += cast5.o
451da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_CAST6) += cast6.o
461da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_ARC4) += arc4.o
471da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_TEA) += tea.o
481da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_KHAZAD) += khazad.o
491da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_ANUBIS) += anubis.o
50e2ee95b8SHye-Shik Changobj-$(CONFIG_CRYPTO_SEED) += seed.o
511da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_DEFLATE) += deflate.o
521da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_MICHAEL_MIC) += michael_mic.o
531da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_CRC32C) += crc32c.o
543c09f17cSHerbert Xuobj-$(CONFIG_CRYPTO_AUTHENC) += authenc.o
551da177e4SLinus Torvalds
561da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_TEST) += tcrypt.o
57685784aaSDan Williams
58685784aaSDan Williams#
59685784aaSDan Williams# generic algorithms and the async_tx api
60685784aaSDan Williams#
61685784aaSDan Williamsobj-$(CONFIG_XOR_BLOCKS) += xor.o
629bc89cd8SDan Williamsobj-$(CONFIG_ASYNC_CORE) += async_tx/
63