CVSROOT: /cvs
Module name: ports
Changes by: [email protected] 2023/07/14 03:19:01
Modified files:
mail/rspamd : Makefile
Added files:
mail/rspamd/patches: patch-src_libcryptobox_cryptobox_c
Log message:
mail/rspamd: prepare for upcoming libcrypto bump
Use ECDSA_sign() directly rather than complicating thing unnecessarily with
ECDSA_sign_setup() and ECDSA_sign_ex(). The latter two will be removed from
the public LibreSSL API. ECDSA_sign() calls ECDSA_sign_setup() internally
and deals with the sig->s zero corner case, which the current code does not
currently do.
ok sthen