diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2014-05-02 20:08:11 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2014-05-02 20:08:11 +0000 |
commit | 1f3323065963c16ed3909bc5ff793d0bb9366d45 (patch) | |
tree | 4e32e16ec0fc0d02a825f1f62c28409eed9797e0 | |
parent | 23ec09480fa96efc29c7c83a997d295febc5e205 (diff) |
Reenable assembler code for SHA384 and SHA512 now that it no longer miscomputes
things. Worth doing as it's twice faster than the C code.
-rw-r--r-- | lib/libcrypto/crypto/arch/hppa/Makefile.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcrypto/crypto/arch/hppa/Makefile.inc b/lib/libcrypto/crypto/arch/hppa/Makefile.inc index 30e0dbce5f0..2d95d638e34 100644 --- a/lib/libcrypto/crypto/arch/hppa/Makefile.inc +++ b/lib/libcrypto/crypto/arch/hppa/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.2 2014/05/02 18:21:39 miod Exp $ +# $OpenBSD: Makefile.inc,v 1.3 2014/05/02 20:08:10 miod Exp $ # hppa-specific libcrypto build rules @@ -29,8 +29,8 @@ CFLAGS+= -DSHA1_ASM SSLASM+= sha sha1-parisc sha1-parisc CFLAGS+= -DSHA256_ASM SSLASM+= sha sha512-parisc sha256-parisc -#CFLAGS+= -DSHA512_ASM -#SSLASM+= sha sha512-parisc sha512-parisc +CFLAGS+= -DSHA512_ASM +SSLASM+= sha sha512-parisc sha512-parisc # whrlpool SRCS+= wp_block.c |