summaryrefslogtreecommitdiffstats
path: root/crypto/Makefile
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2011-10-08 16:41:58 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2011-10-12 08:52:49 +0200
commita86f883747a4908d2ee58574c5ddd49154b03fb0 (patch)
tree6cb76d4bb97f05212f664d1365af9e798a2614ab /crypto/Makefile
parente08eae4173812e3daa0169feac15ddc0a509bd78 (diff)
downloadbarebox-a86f883747a4908d2ee58574c5ddd49154b03fb0.tar.gz
barebox-a86f883747a4908d2ee58574c5ddd49154b03fb0.tar.xz
crypto: add sha224 support
the sha224sum is nearly the same as sha256sum except for the init of the context and the hash length Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'crypto/Makefile')
-rw-r--r--crypto/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/Makefile b/crypto/Makefile
index a88c5b7ada..955a66de48 100644
--- a/crypto/Makefile
+++ b/crypto/Makefile
@@ -2,4 +2,5 @@ obj-$(CONFIG_CRC32) += crc32.o
obj-$(CONFIG_CRC16) += crc16.o
obj-$(CONFIG_MD5) += md5.o
obj-$(CONFIG_SHA1) += sha1.o
-obj-$(CONFIG_SHA256) += sha256.o
+obj-$(CONFIG_SHA224) += sha2.o
+obj-$(CONFIG_SHA256) += sha2.o