diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2023-01-15 23:05:33 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2023-01-15 23:05:33 +0000 |
commit | c91c634056b8c3dbc04ae6ddbc92ae115b79321a (patch) | |
tree | 92e150003d18e700baea391bec74d4b624b6a82a /usr.bin/ssh/Makefile.inc | |
parent | e0d03d121f1dff0dfc9bda8c1eced3e5657218c7 (diff) |
update OpenSSH's Ed25519 code to the last version of SUPERCOP (20221122)
and change the import approach to the same one we use for Streamlined
NTRUPrime: use a shell script to extract the bits we need from SUPERCOP,
make some minor adjustments and squish them all into a single file.
ok tb@ tobhe@
Diffstat (limited to 'usr.bin/ssh/Makefile.inc')
-rw-r--r-- | usr.bin/ssh/Makefile.inc | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/usr.bin/ssh/Makefile.inc b/usr.bin/ssh/Makefile.inc index dc8e78d2b22..f5ea22530fa 100644 --- a/usr.bin/ssh/Makefile.inc +++ b/usr.bin/ssh/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.87 2021/01/09 11:58:50 dtucker Exp $ +# $OpenBSD: Makefile.inc,v 1.88 2023/01/15 23:05:32 djm Exp $ .include <bsd.own.mk> @@ -94,11 +94,7 @@ SRCS_KEY+= cipher-chachapoly.c SRCS_KEY+= ssh-ed25519.c SRCS_KEY+= ssh-ed25519-sk.c # ed25519, from supercop -SRCS_KEY+= sc25519.c -SRCS_KEY+= ge25519.c -SRCS_KEY+= fe25519.c SRCS_KEY+= ed25519.c -SRCS_KEY+= verify.c SRCS_KEY+= hash.c SRCS_KEYP+= authfile.c |