blob: 928f3f10bba75f1c7896f9795282aa1f8dd46c55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# $NetBSD: rsa.inc,v 1.1.1.2 2023/04/18 14:19:04 christos Exp $
#
# @(#) Copyright (c) 1995 Simon J. Gerraty
#
# SRCS extracted from src/crypto/dist/openssl/crypto/rsa/Makefile
#
.PATH: ${OPENSSLSRC}/crypto/rsa
RSA_SRCS = \
rsa_ameth.c \
rsa_asn1.c \
rsa_chk.c \
rsa_crpt.c \
rsa_depr.c \
rsa_err.c \
rsa_gen.c \
rsa_lib.c \
rsa_meth.c \
rsa_mp.c \
rsa_none.c \
rsa_oaep.c \
rsa_ossl.c \
rsa_pk1.c \
rsa_pmeth.c \
rsa_prn.c \
rsa_pss.c \
rsa_saos.c \
rsa_sign.c \
rsa_ssl.c \
rsa_x931.c \
rsa_x931g.c
SRCS += ${RSA_SRCS}
.for cryptosrc in ${RSA_SRCS}
CPPFLAGS.${cryptosrc} = -I${OPENSSLSRC}/crypto/rsa
.endfor
|