CVSROOT: /cvs Module name: src Changes by: [email protected] 2022/11/29 19:52:25
Modified files:
lib/libcrypto/bn: bn_lib.c
Log message:
Fix return values bug in BN_ucmp().
BN_ucmp() is supposed to return -1/0/1 on a < b, a == b and a > b, however
it currently returns other negative and positive values when the top of
a and b differ. Correct this.
ok tb@
