diff options
author | djm@openbsd.org <djm@openbsd.org> | 2023-01-16 00:05:32 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2023-01-16 00:57:41 +0100 |
commit | 9fbbfeca1ce4c7ec0001c827bbf4189a3ba0964b (patch) | |
tree | a22178744edf9d2a85d8c1af3b9032cf91e51729 /crypto_api.h | |
parent | Allow writev is seccomp sandbox. (diff) | |
download | openssh-9fbbfeca1ce4c7ec0001c827bbf4189a3ba0964b.tar.xz openssh-9fbbfeca1ce4c7ec0001c827bbf4189a3ba0964b.zip |
upstream: 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@
OpenBSD-Commit-ID: 1bc0fd624cb6af440905b8ba74ac7c03311b8e3b
Diffstat (limited to 'crypto_api.h')
-rw-r--r-- | crypto_api.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/crypto_api.h b/crypto_api.h index 5c3d97eaa..5d552ef02 100644 --- a/crypto_api.h +++ b/crypto_api.h @@ -1,4 +1,4 @@ -/* $OpenBSD: crypto_api.h,v 1.7 2021/01/08 02:33:13 dtucker Exp $ */ +/* $OpenBSD: crypto_api.h,v 1.8 2023/01/15 23:05:32 djm Exp $ */ /* * Assembled from generated headers and source files by Markus Friedl. @@ -32,8 +32,6 @@ typedef uint64_t crypto_uint64; int crypto_hash_sha512(unsigned char *, const unsigned char *, unsigned long long); -int crypto_verify_32(const unsigned char *, const unsigned char *); - #define crypto_sign_ed25519_SECRETKEYBYTES 64U #define crypto_sign_ed25519_PUBLICKEYBYTES 32U #define crypto_sign_ed25519_BYTES 64U |