summaryrefslogtreecommitdiffstats
path: root/include/crypto
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2015-03-25 12:56:15 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2015-03-27 07:49:45 +0100
commitc3fe3d705949c83029560c8eebb280dff6fc50d6 (patch)
treedb0f864c53cea7e7dc7ead2c49dfec93512288ee /include/crypto
parentab5b2c35e143a87483700ca92d7fd50292a891d0 (diff)
downloadbarebox-c3fe3d705949c83029560c8eebb280dff6fc50d6.tar.gz
barebox-c3fe3d705949c83029560c8eebb280dff6fc50d6.tar.xz
crypto: hmac: move register to hmac
As we will use the best sha algo at runtime Add a new init level crypto_initcall to ensure that all the sha present before hmac Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include/crypto')
-rw-r--r--include/crypto/internal.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/crypto/internal.h b/include/crypto/internal.h
index c6f5908ea0..0987ccc160 100644
--- a/include/crypto/internal.h
+++ b/include/crypto/internal.h
@@ -4,16 +4,6 @@
* GPL v2 only
*/
-#ifdef CONFIG_DIGEST_HMAC
-int digest_hmac_register(struct digest_algo *algo, unsigned int pad_length);
-#else
-static inline int digest_hmac_register(struct digest_algo *algo,
- unsigned int pad_length)
-{
- return 0;
-}
-#endif
-
int digest_generic_verify(struct digest *d, const unsigned char *md);
int digest_generic_digest(struct digest *d, const void *data,
unsigned int len, u8 *out);