aboutsummaryrefslogtreecommitdiff
path: root/sys/opencrypto/xform.h
diff options
context:
space:
mode:
authorAllan Jude <allanjude@FreeBSD.org>2015-12-27 17:33:59 +0000
committerAllan Jude <allanjude@FreeBSD.org>2015-12-27 17:33:59 +0000
commit7a3f5d11fb3873674a1f7e27bcc9a5f7ce279390 (patch)
tree8a9bc5399c16c0f637716b176f3f95c32c001a0f /sys/opencrypto/xform.h
parent1747e1d875f0d7228940ece2eb8ad3b248832432 (diff)
downloadsrc-7a3f5d11fb3873674a1f7e27bcc9a5f7ce279390.tar.gz
src-7a3f5d11fb3873674a1f7e27bcc9a5f7ce279390.zip
Replace sys/crypto/sha2/sha2.c with lib/libmd/sha512c.c
cperciva's libmd implementation is 5-30% faster The same was done for SHA256 previously in r263218 cperciva's implementation was lacking SHA-384 which I implemented, validated against OpenSSL and the NIST documentation Extend sbin/md5 to create sha384(1) Chase dependancies on sys/crypto/sha2/sha2.{c,h} and replace them with sha512{c.c,.h} Reviewed by: cperciva, des, delphij Approved by: secteam, bapt (mentor) MFC after: 2 weeks Sponsored by: ScaleEngine Inc. Differential Revision: https://reviews.freebsd.org/D3929
Notes
Notes: svn path=/head/; revision=292782
Diffstat (limited to 'sys/opencrypto/xform.h')
-rw-r--r--sys/opencrypto/xform.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/opencrypto/xform.h b/sys/opencrypto/xform.h
index e0b639796b83..185e20324b51 100644
--- a/sys/opencrypto/xform.h
+++ b/sys/opencrypto/xform.h
@@ -33,7 +33,9 @@
#include <sys/md5.h>
#include <crypto/sha1.h>
-#include <crypto/sha2/sha2.h>
+#include <crypto/sha2/sha256.h>
+#include <crypto/sha2/sha384.h>
+#include <crypto/sha2/sha512.h>
#include <opencrypto/rmd160.h>
#include <opencrypto/gmac.h>