Browse Source

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

+ 27
- 0
src/lib/libcrypto/crypto/arch/sparc/Makefile.inc View File

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

Loading…
Cancel
Save