From 4ccd8f7b9baa51c00c10e6d5a916f3fd3be8d9a1 Mon Sep 17 00:00:00 2001 From: miod <> Date: Thu, 1 May 2014 22:27:59 +0000 Subject: [PATCH] Enable use of assembly code for AES, BN (Montgomery), SHA1, SHA256 and SHA512. RC4 assembler code is not used, as it runs about 35% slower than the C code. --- .../libcrypto/crypto/arch/hppa/Makefile.inc | 50 +++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 src/lib/libcrypto/crypto/arch/hppa/Makefile.inc diff --git a/src/lib/libcrypto/crypto/arch/hppa/Makefile.inc b/src/lib/libcrypto/crypto/arch/hppa/Makefile.inc new file mode 100644 index 00000000..a25c6939 --- /dev/null +++ b/src/lib/libcrypto/crypto/arch/hppa/Makefile.inc @@ -0,0 +1,50 @@ +# $OpenBSD: Makefile.inc,v 1.1 2014/05/01 22:27:59 miod Exp $ + +# hppa-specific libcrypto build rules + +# aes +SRCS+= aes_core.c aes_cbc.c +CFLAGS+= -DAES_ASM +SSLASM+= aes aes-parisc aes-parisc +# bf +SRCS+= bf_enc.c +# bn +SRCS+= bn_asm.c +SSLASM+= bn parisc-mont parisc-mont +# des +SRCS+= des_enc.c fcrypt_b.c +# modes +CFLAGS+= -DGHASH_ASM +SSLASM+= modes ghash-parisc ghash-parisc +# rc4 +.if 0 # about 35% slower than C code +SSLASM+= rc4 rc4-parisc rc4-parisc +.else +SRCS+= rc4_enc.c rc4_skey.c +.endif +## rc5 +#SRCS+= rc5_enc.c +# sha +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 +# whrlpool +SRCS+= wp_block.c + +.for dir src dst in ${SSLASM} +SRCS+= ${dst}.S +GENERATED+=${dst}.S +${dst}.S: ${LCRYPTO_SRC}/${dir}/asm/${src}.pl + /usr/bin/perl \ + ${LCRYPTO_SRC}/${dir}/asm/${src}.pl 32 ${.TARGET} > ${.TARGET} +.endfor + +CFLAGS+= -DOPENSSL_CPUID_OBJ +SRCS+= pariscid.S +GENERATED+=pariscid.S +pariscid.S: ${LCRYPTO_SRC}/pariscid.pl + /usr/bin/perl \ + ${LCRYPTO_SRC}/pariscid.pl 32 > ${.TARGET}