mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-08-12 01:31:21 +02:00
curve25519.c calls curve25519_base() on the CURVED25519_X64 / aarch64 ARMASM path, but the function is only defined in assembly and had no C prototype in any header, so a strict C compiler (implicit-declaration as error) failed to build that configuration. Declare it alongside the sibling curve25519() prototype under the same guard.