CVSROOT: /cvs Module name: src Changes by: [email protected] 2023/07/15 14:11:37
Modified files:
regress/lib/libcrypto/ecdh: ecdhtest.c
Log message:
Fix return value check for ECDH_compute_key()
ECDH_compute_key() usually returns -1 on error (but sometimes 0). This
was also the case in OpenSSL when these tests were written. This will
soon change. The check for <= 0 will still be correct.
