diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2008-07-31 05:08:25 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2008-08-29 01:49:55 -0400 |
commit | da7f033ddc9fdebb3223b0bf88a2a2ab5b797608 (patch) | |
tree | 619aa89f8787abf07a66e3925bfc72c44a067b04 /crypto/Makefile | |
parent | 01b323245e4f6d4a22ffd73754f145f45c85988c (diff) |
crypto: cryptomgr - Add test infrastructure
This patch moves the newly created alg_test infrastructure into
cryptomgr. This shall allow us to use it for testing at algorithm
registrations.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/Makefile')
-rw-r--r-- | crypto/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/Makefile b/crypto/Makefile index d4f3ed857df0..59ab5008eb99 100644 --- a/crypto/Makefile +++ b/crypto/Makefile | |||
@@ -22,6 +22,8 @@ crypto_hash-objs := hash.o | |||
22 | crypto_hash-objs += ahash.o | 22 | crypto_hash-objs += ahash.o |
23 | obj-$(CONFIG_CRYPTO_HASH) += crypto_hash.o | 23 | obj-$(CONFIG_CRYPTO_HASH) += crypto_hash.o |
24 | 24 | ||
25 | cryptomgr-objs := algboss.o testmgr.o | ||
26 | |||
25 | obj-$(CONFIG_CRYPTO_MANAGER) += cryptomgr.o | 27 | obj-$(CONFIG_CRYPTO_MANAGER) += cryptomgr.o |
26 | obj-$(CONFIG_CRYPTO_HMAC) += hmac.o | 28 | obj-$(CONFIG_CRYPTO_HMAC) += hmac.o |
27 | obj-$(CONFIG_CRYPTO_XCBC) += xcbc.o | 29 | obj-$(CONFIG_CRYPTO_XCBC) += xcbc.o |