summaryrefslogtreecommitdiff
path: root/crypto/internal.h
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2006-08-20 15:25:22 +1000
committerHerbert Xu <herbert@gondor.apana.org.au>2006-09-21 11:46:20 +1000
commitd2f7c58ae66b0ca0b705832acadf5d82a792e24b (patch)
tree8ef98bfbdbc9d5405f723c942d50027b0e0b3f60 /crypto/internal.h
parent38d37842056d65d7714ffa11727dc770564acf93 (diff)
downloadlinux-crypto-d2f7c58ae66b0ca0b705832acadf5d82a792e24b.tar.gz
linux-crypto-d2f7c58ae66b0ca0b705832acadf5d82a792e24b.zip
[CRYPTO] digest: Remove old HMAC implementation
This patch removes the old HMAC implementation now that nobody uses it anymore. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'crypto/internal.h')
-rw-r--r--crypto/internal.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/crypto/internal.h b/crypto/internal.h
index 93d9b10f..2da6ad4f 100644
--- a/crypto/internal.h
+++ b/crypto/internal.h
@@ -73,19 +73,6 @@ static inline void crypto_yield(u32 flags)
cond_resched();
}
-#ifdef CONFIG_CRYPTO_HMAC
-int crypto_alloc_hmac_block(struct crypto_tfm *tfm);
-void crypto_free_hmac_block(struct crypto_tfm *tfm);
-#else
-static inline int crypto_alloc_hmac_block(struct crypto_tfm *tfm)
-{
- return 0;
-}
-
-static inline void crypto_free_hmac_block(struct crypto_tfm *tfm)
-{ }
-#endif
-
#ifdef CONFIG_PROC_FS
void __init crypto_init_proc(void);
void __exit crypto_exit_proc(void);