diff options
author | jmg <jmg@FreeBSD.org> | 2014-03-16 01:43:23 +0000 |
---|---|---|
committer | jmg <jmg@FreeBSD.org> | 2014-03-16 01:43:23 +0000 |
commit | eab153cc9df7a4184bb4aed26cf6f4082646ee3e (patch) | |
tree | 56bc384af92f8f4eeb6c01c3445b5b7a33bbe50e /lib/libcrypt | |
parent | d1bbd4d9f94fc615195e788df25978dea6a16cb6 (diff) | |
download | FreeBSD-src-eab153cc9df7a4184bb4aed26cf6f4082646ee3e.zip FreeBSD-src-eab153cc9df7a4184bb4aed26cf6f4082646ee3e.tar.gz |
replace the kernel's version w/ cperciva's implementation... In all
my tests, it is faster ~20%, even on an old IXP425 533MHz it is ~45%
faster... This is partly due to loop unrolling, so the code size does
significantly increase... I do plan on committing a version that
rolls up the loops again for smaller code size for embedded systems
where size is more important than absolute performance (it'll save ~6k
code)...
The kernel implementation is now shared w/ userland's libcrypt and
libmd...
We drop support for sha256 from sha2.c, so now sha2.c only contains
sha384 and sha512...
Reviewed by: secteam@
Diffstat (limited to 'lib/libcrypt')
-rw-r--r-- | lib/libcrypt/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libcrypt/Makefile b/lib/libcrypt/Makefile index 798b4b6..aca24d8 100644 --- a/lib/libcrypt/Makefile +++ b/lib/libcrypt/Makefile @@ -9,7 +9,7 @@ SHLIBDIR?= /lib SHLIB_MAJOR= 5 LIB= crypt -.PATH: ${.CURDIR}/../libmd +.PATH: ${.CURDIR}/../libmd ${.CURDIR}/../../sys/crypto/sha2 SRCS= crypt.c misc.c \ crypt-md5.c md5c.c \ crypt-nthash.c md4c.c \ |