Home | History | Annotate | Line # | Download | only in libcrypto
      1 #	$NetBSD: curve448.inc,v 1.1.1.1 2023/04/18 14:19:04 christos Exp $
      2 #
      3 #	SRCS extracted from src/crypto/dist/openssl/crypto/ec/curve448
      4 #
      5 
      6 CURVE448=${OPENSSLSRC}/crypto/ec/curve448
      7 .PATH:	${CURVE448} ${CURVE448}/arch_32
      8 
      9 
     10 CURVE448_SRCS += \
     11 curve448.c \
     12 curve448_tables.c \
     13 eddsa.c \
     14 f_generic.c \
     15 f_impl.c \
     16 scalar.c
     17 
     18 SRCS += ${CURVE448_SRCS}
     19 COPTS.curve448.c+=-Wno-error=stack-protector
     20 COPTS.eddsa.c+=-Wno-error=stack-protector
     21 COPTS.f_generic.c+=-Wno-error=stack-protector
     22 
     23 .for cryptosrc in ${CURVE448_SRCS}
     24 CPPFLAGS.${cryptosrc} = -I${CURVE448} -I${CURVE448}/arch_32 ${CURVE448CPPFLAGS}
     25 .endfor
     26