diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2014-05-04 17:13:06 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2014-05-04 17:13:06 +0000 |
commit | 7b54d0ff46f39381f4194e2be01d6ea325d19630 (patch) | |
tree | 70c9cc17c30477b550bffd3c7ecfefb55929800a /lib/libcrypto/arch/vax/Makefile.inc | |
parent | 4a9ec26c9ca7e6c580ba93f377174444380fd92b (diff) |
Enable the assembler code for BN, which was lost quite some time ago.
Diffstat (limited to 'lib/libcrypto/arch/vax/Makefile.inc')
-rw-r--r-- | lib/libcrypto/arch/vax/Makefile.inc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/libcrypto/arch/vax/Makefile.inc b/lib/libcrypto/arch/vax/Makefile.inc new file mode 100644 index 00000000000..968783c5d24 --- /dev/null +++ b/lib/libcrypto/arch/vax/Makefile.inc @@ -0,0 +1,19 @@ +# $OpenBSD: Makefile.inc,v 1.1 2014/05/04 17:13:05 miod Exp $ + +# vax-specific libcrypto build rules + +# aes +CFLAGS+=-DOPENSSL_NO_ASM +SRCS+= aes_core.c aes_cbc.c +# bf +SRCS+= bf_enc.c +# bn +SRCS+= bn_asm_vax.S +# des +SRCS+= des_enc.c fcrypt_b.c +# rc4 +SRCS+= rc4_enc.c rc4_skey.c +## rc5 +#SRCS+= rc5_enc.c +# whrlpool +SRCS+= wp_block.c |