summaryrefslogtreecommitdiff
path: root/lib/libcrypto/srcs.inc
blob: 6f1a2f3e22d18350f6da63693e803ecdc88d26e3 (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.10 2001/09/10 02:59:09 thorpej Exp $

CRYPTOINCS= \
	asn1.inc bf.inc bio.inc bn.inc buffer.inc cast.inc comp.inc conf.inc \
	crypto.inc des.inc dh.inc dsa.inc dso.inc err.inc evp.inc hmac.inc \
	lhash.inc md2.inc md4.inc md5.inc mdc2.inc objects.inc pem.inc \
	pkcs12.inc pkcs7.inc rand.inc rc2.inc rc4.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_CPU}/${cryptoinc})
.include "${.CURDIR}/arch/${MACHINE_CPU}/${cryptoinc}"
.else
.include "${cryptoinc}"
.endif
.endfor