CVSROOT: /cvs Module name: src Changes by: js...@cvs.openbsd.org 2022/09/03 10:01:23
Modified files: lib/libcrypto/asn1: asn1t.h lib/libcrypto/dsa: dsa_asn1.c lib/libcrypto/ecdsa: ecs_asn1.c Log message: Stop using CBIGNUM_it internal to libcrypto. CBIGNUM_it is supposed to be the "clear bignum" or "secure" bignum - that is one which zeros its memory after use and ensures that the constant time flags are set... in LibreSSL we always do both of these things for BIGNUMs, so just use BIGNUM_it instead. ok tb@