diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-01-25 11:38:25 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-01-25 11:38:25 -0500 |
commit | eba0e319c12fb098d66316a8eafbaaa9174a07c3 (patch) | |
tree | b2703117db9e36bb3510654efd55361f61c54742 /crypto/Makefile | |
parent | df8dc74e8a383eaf2d9b44b80a71ec6f0e52b42e (diff) | |
parent | 15e7b4452b72ae890f2fcb027b4c4fa63a1c9a7a (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6: (125 commits)
[CRYPTO] twofish: Merge common glue code
[CRYPTO] hifn_795x: Fixup container_of() usage
[CRYPTO] cast6: inline bloat--
[CRYPTO] api: Set default CRYPTO_MINALIGN to unsigned long long
[CRYPTO] tcrypt: Make xcbc available as a standalone test
[CRYPTO] xcbc: Remove bogus hash/cipher test
[CRYPTO] xcbc: Fix algorithm leak when block size check fails
[CRYPTO] tcrypt: Zero axbuf in the right function
[CRYPTO] padlock: Only reset the key once for each CBC and ECB operation
[CRYPTO] api: Include sched.h for cond_resched in scatterwalk.h
[CRYPTO] salsa20-asm: Remove unnecessary dependency on CRYPTO_SALSA20
[CRYPTO] tcrypt: Add select of AEAD
[CRYPTO] salsa20: Add x86-64 assembly version
[CRYPTO] salsa20_i586: Salsa20 stream cipher algorithm (i586 version)
[CRYPTO] gcm: Introduce rfc4106
[CRYPTO] api: Show async type
[CRYPTO] chainiv: Avoid lock spinning where possible
[CRYPTO] seqiv: Add select AEAD in Kconfig
[CRYPTO] scatterwalk: Handle zero nbytes in scatterwalk_map_and_copy
[CRYPTO] null: Allow setkey on digest_null
...
Diffstat (limited to 'crypto/Makefile')
-rw-r--r-- | crypto/Makefile | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/crypto/Makefile b/crypto/Makefile index 43c2a0dc9936..48c758379954 100644 --- a/crypto/Makefile +++ b/crypto/Makefile | |||
@@ -8,9 +8,14 @@ crypto_algapi-$(CONFIG_PROC_FS) += proc.o | |||
8 | crypto_algapi-objs := algapi.o scatterwalk.o $(crypto_algapi-y) | 8 | crypto_algapi-objs := algapi.o scatterwalk.o $(crypto_algapi-y) |
9 | obj-$(CONFIG_CRYPTO_ALGAPI) += crypto_algapi.o | 9 | obj-$(CONFIG_CRYPTO_ALGAPI) += crypto_algapi.o |
10 | 10 | ||
11 | obj-$(CONFIG_CRYPTO_ABLKCIPHER) += ablkcipher.o | ||
12 | obj-$(CONFIG_CRYPTO_AEAD) += aead.o | 11 | obj-$(CONFIG_CRYPTO_AEAD) += aead.o |
13 | obj-$(CONFIG_CRYPTO_BLKCIPHER) += blkcipher.o | 12 | |
13 | crypto_blkcipher-objs := ablkcipher.o | ||
14 | crypto_blkcipher-objs += blkcipher.o | ||
15 | obj-$(CONFIG_CRYPTO_BLKCIPHER) += crypto_blkcipher.o | ||
16 | obj-$(CONFIG_CRYPTO_BLKCIPHER) += chainiv.o | ||
17 | obj-$(CONFIG_CRYPTO_BLKCIPHER) += eseqiv.o | ||
18 | obj-$(CONFIG_CRYPTO_SEQIV) += seqiv.o | ||
14 | 19 | ||
15 | crypto_hash-objs := hash.o | 20 | crypto_hash-objs := hash.o |
16 | obj-$(CONFIG_CRYPTO_HASH) += crypto_hash.o | 21 | obj-$(CONFIG_CRYPTO_HASH) += crypto_hash.o |
@@ -32,6 +37,9 @@ obj-$(CONFIG_CRYPTO_CBC) += cbc.o | |||
32 | obj-$(CONFIG_CRYPTO_PCBC) += pcbc.o | 37 | obj-$(CONFIG_CRYPTO_PCBC) += pcbc.o |
33 | obj-$(CONFIG_CRYPTO_LRW) += lrw.o | 38 | obj-$(CONFIG_CRYPTO_LRW) += lrw.o |
34 | obj-$(CONFIG_CRYPTO_XTS) += xts.o | 39 | obj-$(CONFIG_CRYPTO_XTS) += xts.o |
40 | obj-$(CONFIG_CRYPTO_CTR) += ctr.o | ||
41 | obj-$(CONFIG_CRYPTO_GCM) += gcm.o | ||
42 | obj-$(CONFIG_CRYPTO_CCM) += ccm.o | ||
35 | obj-$(CONFIG_CRYPTO_CRYPTD) += cryptd.o | 43 | obj-$(CONFIG_CRYPTO_CRYPTD) += cryptd.o |
36 | obj-$(CONFIG_CRYPTO_DES) += des_generic.o | 44 | obj-$(CONFIG_CRYPTO_DES) += des_generic.o |
37 | obj-$(CONFIG_CRYPTO_FCRYPT) += fcrypt.o | 45 | obj-$(CONFIG_CRYPTO_FCRYPT) += fcrypt.o |
@@ -48,10 +56,12 @@ obj-$(CONFIG_CRYPTO_TEA) += tea.o | |||
48 | obj-$(CONFIG_CRYPTO_KHAZAD) += khazad.o | 56 | obj-$(CONFIG_CRYPTO_KHAZAD) += khazad.o |
49 | obj-$(CONFIG_CRYPTO_ANUBIS) += anubis.o | 57 | obj-$(CONFIG_CRYPTO_ANUBIS) += anubis.o |
50 | obj-$(CONFIG_CRYPTO_SEED) += seed.o | 58 | obj-$(CONFIG_CRYPTO_SEED) += seed.o |
59 | obj-$(CONFIG_CRYPTO_SALSA20) += salsa20_generic.o | ||
51 | obj-$(CONFIG_CRYPTO_DEFLATE) += deflate.o | 60 | obj-$(CONFIG_CRYPTO_DEFLATE) += deflate.o |
52 | obj-$(CONFIG_CRYPTO_MICHAEL_MIC) += michael_mic.o | 61 | obj-$(CONFIG_CRYPTO_MICHAEL_MIC) += michael_mic.o |
53 | obj-$(CONFIG_CRYPTO_CRC32C) += crc32c.o | 62 | obj-$(CONFIG_CRYPTO_CRC32C) += crc32c.o |
54 | obj-$(CONFIG_CRYPTO_AUTHENC) += authenc.o | 63 | obj-$(CONFIG_CRYPTO_AUTHENC) += authenc.o |
64 | obj-$(CONFIG_CRYPTO_LZO) += lzo.o | ||
55 | 65 | ||
56 | obj-$(CONFIG_CRYPTO_TEST) += tcrypt.o | 66 | obj-$(CONFIG_CRYPTO_TEST) += tcrypt.o |
57 | 67 | ||