diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2006-08-20 01:25:22 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2006-09-20 21:46:20 -0400 |
commit | 8425165dfed27945e8509c141cea245d1739e372 (patch) | |
tree | c2a05344993a52bb317bb320a97d0566f3d277bf /crypto/internal.h | |
parent | 878b9014666217555d16073764f30e825cf18d2f (diff) |
[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.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/crypto/internal.h b/crypto/internal.h index 93d9b10ff914..2da6ad4f3593 100644 --- a/crypto/internal.h +++ b/crypto/internal.h | |||
@@ -73,19 +73,6 @@ static inline void crypto_yield(u32 flags) | |||
73 | cond_resched(); | 73 | cond_resched(); |
74 | } | 74 | } |
75 | 75 | ||
76 | #ifdef CONFIG_CRYPTO_HMAC | ||
77 | int crypto_alloc_hmac_block(struct crypto_tfm *tfm); | ||
78 | void crypto_free_hmac_block(struct crypto_tfm *tfm); | ||
79 | #else | ||
80 | static inline int crypto_alloc_hmac_block(struct crypto_tfm *tfm) | ||
81 | { | ||
82 | return 0; | ||
83 | } | ||
84 | |||
85 | static inline void crypto_free_hmac_block(struct crypto_tfm *tfm) | ||
86 | { } | ||
87 | #endif | ||
88 | |||
89 | #ifdef CONFIG_PROC_FS | 76 | #ifdef CONFIG_PROC_FS |
90 | void __init crypto_init_proc(void); | 77 | void __init crypto_init_proc(void); |
91 | void __exit crypto_exit_proc(void); | 78 | void __exit crypto_exit_proc(void); |