CVSROOT: /cvs Module name: src Changes by: t...@cvs.openbsd.org 2022/02/07 12:49:56
Modified files: lib/libcrypto/bn: bn_exp2.c Log message: Avoid a NULL dereference in BN_mod_exp2_mont() This is a very rarely used function and the crash is hard to reach in practice. Instead of implementing BN_is_odd() badly by hand, just call the real thing. Reported by Guido Vranken ok beck jsing