summaryrefslogtreecommitdiff
path: root/lib/libcrypto/srcs.inc
blob: bf07ebf5ebf3e339f4f629db6475c6900b3118ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#	$NetBSD: srcs.inc,v 1.8 2000/10/04 05:58:15 itojun Exp $

CRYPTOINCS=	asn1.inc crypto.inc bf.inc bio.inc bn.inc buffer.inc \
		cast.inc comp.inc conf.inc des.inc dh.inc dsa.inc \
		err.inc evp.inc hmac.inc lhash.inc md2.inc mdc2.inc \
		objects.inc pem.inc pkcs12.inc pkcs7.inc rand.inc rc2.inc \
		rc4.inc md5.inc ripemd.inc rsa.inc sha.inc stack.inc \
		txt_db.inc x509.inc x509v3.inc

# patented algorithms - see ../libcrypto_*
CRYPTOINCS+=	idea.inc
CRYPTOINCS+=	rc5.inc

CRYPTOINCS+=	man.inc

.for cryptoinc in ${CRYPTOINCS}
.if exists(${.CURDIR}/arch/${MACHINE_ARCH:C/mipse[bl]/mips/}/${cryptoinc})
.include "${.CURDIR}/arch/${MACHINE_ARCH:C/mipse[bl]/mips/}/${cryptoinc}"
.else
.include "${cryptoinc}"
.endif
.endfor