CVSROOT: /cvs Module name: src Changes by: js...@cvs.openbsd.org 2022/11/09 10:39:29
Modified files: lib/libcrypto/curve25519: curve25519.c curve25519.h curve25519_internal.h Log message: Rework ED25519 API. BoringSSL implemented a compound private key, which includes a copy of the public key as a performance optimisation for signing. However, this does not readily match with how EVP works, makes the ED25519 API inconsistent with the X25519 API, diverges from th RFC and does not align with the OpenSSL API. Instead, the caller can readily compute the public key and pass this in to the signing process. ok tb@