summaryrefslogtreecommitdiffstats
path: root/crypto/Makefile
diff options
context:
space:
mode:
authorYegor Yefremov <yegorslists@googlemail.com>2016-05-25 09:51:13 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2016-05-25 10:41:30 +0200
commit61ddbd35207af8dbd9b1a0c17619148179235203 (patch)
tree5cabed596de7a799467f2571a610dd044adb1fd2 /crypto/Makefile
parent57a648aabbb3e399cde3dcda749f8cb34b53b569 (diff)
downloadbarebox-61ddbd35207af8dbd9b1a0c17619148179235203.tar.gz
barebox-61ddbd35207af8dbd9b1a0c17619148179235203.tar.xz
crypto: add CRC32 digest
CRC32 digest can be used to check CRC32 hashes in FIT images etc. Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'crypto/Makefile')
-rw-r--r--crypto/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/Makefile b/crypto/Makefile
index b4fb3d8da0..a7240d1d6e 100644
--- a/crypto/Makefile
+++ b/crypto/Makefile
@@ -2,6 +2,7 @@ obj-$(CONFIG_CRC32) += crc32.o
obj-$(CONFIG_CRC16) += crc16.o
obj-$(CONFIG_CRC7) += crc7.o
obj-$(CONFIG_DIGEST) += digest.o
+obj-$(CONFIG_DIGEST_CRC32_GENERIC) += crc32_digest.o
obj-$(CONFIG_DIGEST_HMAC_GENERIC) += hmac.o
obj-$(CONFIG_DIGEST_MD5_GENERIC) += md5.o
obj-$(CONFIG_DIGEST_SHA1_GENERIC) += sha1.o