xref: /openbmc/linux/crypto/Makefile (revision 76cb9521)
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
111ae97820SHerbert Xuobj-$(CONFIG_CRYPTO_AEAD) += aead.o
12653ebd9cSHerbert Xu
13653ebd9cSHerbert Xucrypto_blkcipher-objs := ablkcipher.o
14653ebd9cSHerbert Xucrypto_blkcipher-objs += blkcipher.o
1576fc60a2SHerbert Xucrypto_blkcipher-objs += chainiv.o
1676fc60a2SHerbert Xucrypto_blkcipher-objs += eseqiv.o
17653ebd9cSHerbert Xuobj-$(CONFIG_CRYPTO_BLKCIPHER) += crypto_blkcipher.o
180a270321SHerbert Xuobj-$(CONFIG_CRYPTO_SEQIV) += seqiv.o
195cde0af2SHerbert Xu
20055bcee3SHerbert Xucrypto_hash-objs := hash.o
21055bcee3SHerbert Xuobj-$(CONFIG_CRYPTO_HASH) += crypto_hash.o
22055bcee3SHerbert Xu
232b8c19dbSHerbert Xuobj-$(CONFIG_CRYPTO_MANAGER) += cryptomgr.o
241da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_HMAC) += hmac.o
25333b0d7eSKazunori MIYAZAWAobj-$(CONFIG_CRYPTO_XCBC) += xcbc.o
261da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_NULL) += crypto_null.o
271da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_MD4) += md4.o
281da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_MD5) += md5.o
29ad5d2789SSebastian Siewiorobj-$(CONFIG_CRYPTO_SHA1) += sha1_generic.o
30ad5d2789SSebastian Siewiorobj-$(CONFIG_CRYPTO_SHA256) += sha256_generic.o
3178f8b3a2SJan Glauberobj-$(CONFIG_CRYPTO_SHA512) += sha512_generic.o
321da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_WP512) += wp512.o
331da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_TGR192) += tgr192.o
34c494e070SRik Snelobj-$(CONFIG_CRYPTO_GF128MUL) += gf128mul.o
35db131ef9SHerbert Xuobj-$(CONFIG_CRYPTO_ECB) += ecb.o
36db131ef9SHerbert Xuobj-$(CONFIG_CRYPTO_CBC) += cbc.o
3791652be5SDavid Howellsobj-$(CONFIG_CRYPTO_PCBC) += pcbc.o
3876cb9521SKevin Coffmanobj-$(CONFIG_CRYPTO_CTS) += cts.o
3964470f1bSRik Snelobj-$(CONFIG_CRYPTO_LRW) += lrw.o
40f19f5111SRik Snelobj-$(CONFIG_CRYPTO_XTS) += xts.o
4123e353c8SJoy Lattenobj-$(CONFIG_CRYPTO_CTR) += ctr.o
4228db8e3eSMikko Herranenobj-$(CONFIG_CRYPTO_GCM) += gcm.o
434a49b499SJoy Lattenobj-$(CONFIG_CRYPTO_CCM) += ccm.o
44124b53d0SHerbert Xuobj-$(CONFIG_CRYPTO_CRYPTD) += cryptd.o
45c5a511f1SSebastian Siewiorobj-$(CONFIG_CRYPTO_DES) += des_generic.o
4690831639SDavid Howellsobj-$(CONFIG_CRYPTO_FCRYPT) += fcrypt.o
471da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_BLOWFISH) += blowfish.o
481da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_TWOFISH) += twofish.o
492729bb42SJoachim Fritschiobj-$(CONFIG_CRYPTO_TWOFISH_COMMON) += twofish_common.o
501da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_SERPENT) += serpent.o
51f8246af0SSebastian Siewiorobj-$(CONFIG_CRYPTO_AES) += aes_generic.o
52d64beac0SNoriaki TAKAMIYAobj-$(CONFIG_CRYPTO_CAMELLIA) += camellia.o
531da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_CAST5) += cast5.o
541da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_CAST6) += cast6.o
551da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_ARC4) += arc4.o
561da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_TEA) += tea.o
571da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_KHAZAD) += khazad.o
581da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_ANUBIS) += anubis.o
59e2ee95b8SHye-Shik Changobj-$(CONFIG_CRYPTO_SEED) += seed.o
602407d608STan Swee Hengobj-$(CONFIG_CRYPTO_SALSA20) += salsa20_generic.o
611da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_DEFLATE) += deflate.o
621da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_MICHAEL_MIC) += michael_mic.o
631da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_CRC32C) += crc32c.o
643c09f17cSHerbert Xuobj-$(CONFIG_CRYPTO_AUTHENC) += authenc.o
650b77abb3SZoltan Sogorobj-$(CONFIG_CRYPTO_LZO) += lzo.o
661da177e4SLinus Torvalds
671da177e4SLinus Torvaldsobj-$(CONFIG_CRYPTO_TEST) += tcrypt.o
68685784aaSDan Williams
69685784aaSDan Williams#
70685784aaSDan Williams# generic algorithms and the async_tx api
71685784aaSDan Williams#
72685784aaSDan Williamsobj-$(CONFIG_XOR_BLOCKS) += xor.o
739bc89cd8SDan Williamsobj-$(CONFIG_ASYNC_CORE) += async_tx/
74