summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/Makefile
diff options
context:
space:
mode:
authorjsing <>2022-11-10 16:37:52 +0000
committerjsing <>2022-11-10 16:37:52 +0000
commit8bbca4710a981e94365a52a3aad374c251e1d0a5 (patch)
treea195899b53d4926967b849934341c4be077ceb67 /src/lib/libcrypto/Makefile
parent313fb25a243cac7bb2c5d40518041217e06a9d16 (diff)
downloadopenbsd-8bbca4710a981e94365a52a3aad374c251e1d0a5.tar.gz
openbsd-8bbca4710a981e94365a52a3aad374c251e1d0a5.tar.bz2
openbsd-8bbca4710a981e94365a52a3aad374c251e1d0a5.zip
Implement EVP interfaces for Ed25519 and X25519.
ok beck@ tb@
Diffstat (limited to 'src/lib/libcrypto/Makefile')
-rw-r--r--src/lib/libcrypto/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libcrypto/Makefile b/src/lib/libcrypto/Makefile
index b25ea5f948..084d6c1786 100644
--- a/src/lib/libcrypto/Makefile
+++ b/src/lib/libcrypto/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.85 2022/11/10 16:00:34 joshua Exp $ 1# $OpenBSD: Makefile,v 1.86 2022/11/10 16:37:51 jsing Exp $
2 2
3LIB= crypto 3LIB= crypto
4LIBREBUILD=y 4LIBREBUILD=y
@@ -33,6 +33,7 @@ CFLAGS+= -I${LCRYPTO_SRC}/asn1
33CFLAGS+= -I${LCRYPTO_SRC}/bio 33CFLAGS+= -I${LCRYPTO_SRC}/bio
34CFLAGS+= -I${LCRYPTO_SRC}/bn 34CFLAGS+= -I${LCRYPTO_SRC}/bn
35CFLAGS+= -I${LCRYPTO_SRC}/bytestring 35CFLAGS+= -I${LCRYPTO_SRC}/bytestring
36CFLAGS+= -I${LCRYPTO_SRC}/curve25519
36CFLAGS+= -I${LCRYPTO_SRC}/dh 37CFLAGS+= -I${LCRYPTO_SRC}/dh
37CFLAGS+= -I${LCRYPTO_SRC}/dsa 38CFLAGS+= -I${LCRYPTO_SRC}/dsa
38CFLAGS+= -I${LCRYPTO_SRC}/ec 39CFLAGS+= -I${LCRYPTO_SRC}/ec
@@ -361,6 +362,7 @@ SRCS+= ecp_nistp521.c
361SRCS+= ecp_nistputil.c 362SRCS+= ecp_nistputil.c
362SRCS+= ecp_oct.c 363SRCS+= ecp_oct.c
363SRCS+= ecp_smpl.c 364SRCS+= ecp_smpl.c
365SRCS+= ecx_methods.c
364 366
365# ecdh/ 367# ecdh/
366SRCS+= ecdh_kdf.c 368SRCS+= ecdh_kdf.c