diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2014-05-05 04:44:55 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2014-05-05 04:44:55 +0000 |
commit | c773f93422ea7c763fa1f02ea0e8e33e9fa9bb19 (patch) | |
tree | 7ceb48566c5c41a990e3b68aa867fa26caf3243d /lib/libcrypto/arch | |
parent | 09a6c4abd3ba7de86c058e0cf19ac09c7937f8e5 (diff) |
Enable assembler code for DES. Assembler code for BN is commented out as it
uses the `umul' and `udiv' instructions directly, which are not supported
on v7 processors.
Diffstat (limited to 'lib/libcrypto/arch')
-rw-r--r-- | lib/libcrypto/arch/sparc/Makefile.inc | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/lib/libcrypto/arch/sparc/Makefile.inc b/lib/libcrypto/arch/sparc/Makefile.inc new file mode 100644 index 00000000000..54dc3187376 --- /dev/null +++ b/lib/libcrypto/arch/sparc/Makefile.inc @@ -0,0 +1,27 @@ +# $OpenBSD: Makefile.inc,v 1.1 2014/05/05 04:44:54 miod Exp $ + +# sparc-specific libcrypto build rules + +# aes +SRCS+= aes_core.c aes_cbc.c +# bf +SRCS+= bf_enc.c +# bn +.if 0 # uses `umul' and `udiv' instructions +SRCS+= sparcv8.S +.PATH: ${LCRYPTO_SRC}/bn/asm +.else +SRCS+= bn_asm.c +.endif +# des +SRCS+= fcrypt_b.c +SRCS+= des_enc-sparc.S +GENERATED+= des_enc-sparc.S +des_enc-sparc.S: ${LCRYPTO_SRC}/des/asm/des_enc.m4 + m4 ${LCRYPTO_SRC}/des/asm/des_enc.m4 > ${.TARGET} +# rc4 +SRCS+= rc4_enc.c rc4_skey.c +## rc5 +#SRCS+= rc5_enc.c +# whrlpool +SRCS+= wp_block.c |