Browse Source

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.
OPENBSD_5_6
miod 10 years ago
parent
commit
4ccd8f7b9b
1 changed files with 50 additions and 0 deletions
  1. +50
    -0
      src/lib/libcrypto/crypto/arch/hppa/Makefile.inc

+ 50
- 0
src/lib/libcrypto/crypto/arch/hppa/Makefile.inc View File

@ -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}

Loading…
Cancel
Save