Home | History | Annotate | Line # | Download | only in libcrypto
des.inc revision 1.1
      1 #	$NetBSD: des.inc,v 1.1 2018/02/03 22:43:37 christos Exp $
      2 #
      3 #	@(#) Copyright (c) 1995 Simon J. Gerraty
      4 #
      5 #	SRCS extracted from src/crypto/dist/openssl/crypto/des/Makefile
      6 #
      7 
      8 .PATH:	${OPENSSLSRC}/crypto/des
      9 
     10 .if !defined(DES_SRCS)
     11 DES_SRCS = des_enc.c fcrypt_b.c
     12 .endif
     13 DES_SRCS += cbc_cksm.c cbc_enc.c  cfb64enc.c cfb_enc.c  \
     14 	ecb3_enc.c ecb_enc.c  enc_read.c enc_writ.c \
     15 	fcrypt.c ofb64enc.c ofb_enc.c  pcbc_enc.c \
     16 	qud_cksm.c rand_key.c rpc_enc.c  set_key.c  \
     17 	xcbc_enc.c \
     18 	str2key.c  cfb64ede.c ofb64ede.c ede_cbcm_enc.c \
     19 	read2pwd.c
     20 #	des_old.c des_old2.c
     21 SRCS += ${DES_SRCS}
     22 
     23 .for cryptosrc in ${DES_SRCS}
     24 CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/des
     25 .endfor
     26