diff options
author | jsing <> | 2016-11-05 14:57:29 +0000 |
---|---|---|
committer | jsing <> | 2016-11-05 14:57:29 +0000 |
commit | adb72aa0e0ceb7ed3651bd3410f1509d77ad825e (patch) | |
tree | f489c520039d048388d278c2cd2c9d40a3d62afe /src/lib/libcrypto/Makefile | |
parent | 857e056d8e939aab5d14f1aadf80c28fe9a4f805 (diff) | |
download | openbsd-adb72aa0e0ceb7ed3651bd3410f1509d77ad825e.tar.gz openbsd-adb72aa0e0ceb7ed3651bd3410f1509d77ad825e.tar.bz2 openbsd-adb72aa0e0ceb7ed3651bd3410f1509d77ad825e.zip |
Add support for X25519.
This brings in code from BoringSSL, which is mostly taken from SUPERCOP.
ok beck@ bcook@
Diffstat (limited to 'src/lib/libcrypto/Makefile')
-rw-r--r-- | src/lib/libcrypto/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/lib/libcrypto/Makefile b/src/lib/libcrypto/Makefile index 0517d8ab08..43aeef3226 100644 --- a/src/lib/libcrypto/Makefile +++ b/src/lib/libcrypto/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.10 2016/11/04 18:12:49 jsing Exp $ | 1 | # $OpenBSD: Makefile,v 1.11 2016/11/05 14:57:29 jsing Exp $ |
2 | 2 | ||
3 | LIB= crypto | 3 | LIB= crypto |
4 | 4 | ||
@@ -89,6 +89,9 @@ SRCS+= comp_lib.c comp_err.c c_rle.c c_zlib.c | |||
89 | SRCS+= conf_err.c conf_lib.c conf_api.c conf_def.c conf_mod.c | 89 | SRCS+= conf_err.c conf_lib.c conf_api.c conf_def.c conf_mod.c |
90 | SRCS+= conf_mall.c conf_sap.c | 90 | SRCS+= conf_mall.c conf_sap.c |
91 | 91 | ||
92 | # curve25519/ | ||
93 | SRCS+= curve25519.c curve25519-generic.c | ||
94 | |||
92 | # des/ | 95 | # des/ |
93 | SRCS+= cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c | 96 | SRCS+= cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c |
94 | SRCS+= ecb3_enc.c ecb_enc.c enc_read.c enc_writ.c | 97 | SRCS+= ecb3_enc.c ecb_enc.c enc_read.c enc_writ.c |
@@ -261,6 +264,7 @@ SRCS+= pcy_cache.c pcy_node.c pcy_data.c pcy_map.c pcy_tree.c pcy_lib.c | |||
261 | ${LCRYPTO_SRC}/cmac \ | 264 | ${LCRYPTO_SRC}/cmac \ |
262 | ${LCRYPTO_SRC}/comp \ | 265 | ${LCRYPTO_SRC}/comp \ |
263 | ${LCRYPTO_SRC}/conf \ | 266 | ${LCRYPTO_SRC}/conf \ |
267 | ${LCRYPTO_SRC}/curve25519 \ | ||
264 | ${LCRYPTO_SRC}/des \ | 268 | ${LCRYPTO_SRC}/des \ |
265 | ${LCRYPTO_SRC}/dh \ | 269 | ${LCRYPTO_SRC}/dh \ |
266 | ${LCRYPTO_SRC}/dsa \ | 270 | ${LCRYPTO_SRC}/dsa \ |
@@ -317,6 +321,7 @@ HDRS=\ | |||
317 | ${LCRYPTO_SRC}/conf/conf.h \ | 321 | ${LCRYPTO_SRC}/conf/conf.h \ |
318 | ${LCRYPTO_SRC}/conf/conf_api.h \ | 322 | ${LCRYPTO_SRC}/conf/conf_api.h \ |
319 | ${LCRYPTO_SRC}/crypto.h \ | 323 | ${LCRYPTO_SRC}/crypto.h \ |
324 | ${LCRYPTO_SRC}/curve25519/curve25519.h \ | ||
320 | ${LCRYPTO_SRC}/des/des.h \ | 325 | ${LCRYPTO_SRC}/des/des.h \ |
321 | ${LCRYPTO_SRC}/dh/dh.h \ | 326 | ${LCRYPTO_SRC}/dh/dh.h \ |
322 | ${LCRYPTO_SRC}/dsa/dsa.h \ | 327 | ${LCRYPTO_SRC}/dsa/dsa.h \ |