CVSROOT: /cvs Module name: src Changes by: [email protected] 2023/07/02 09:02:52
Modified files:
lib/libcrypto/ec: ecx_methods.c
Log message:
Fix return values of ecx methods
It is hard to get your return values right if you choose them to be a
random subset of {-2, ..., 3}. The item_verify() and the digestverify()
methods don't return 0 on error, but -1. Here 0 means "failed to verify",
obviously.
ok jsing
