diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2014-05-01 22:28:00 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2014-05-01 22:28:00 +0000 |
commit | 6c1a079e6ffc844d5e487115b9f34f36fb47f77d (patch) | |
tree | e54d56556949613772ef34692a72dc3bf9487923 /lib/libcrypto | |
parent | 28caa327c2939773cbf481147eecf5fc22bb223c (diff) |
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.
Diffstat (limited to 'lib/libcrypto')
-rw-r--r-- | lib/libcrypto/crypto/arch/hppa/Makefile.inc | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/lib/libcrypto/crypto/arch/hppa/Makefile.inc b/lib/libcrypto/crypto/arch/hppa/Makefile.inc new file mode 100644 index 00000000000..a25c69392bf --- /dev/null +++ b/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} |