CVSROOT: /cvs Module name: src Changes by: t...@cvs.openbsd.org 2022/08/31 03:33:39
Modified files: regress/lib/libcrypto/ecdsa: ecdsatest.c Log message: Avoid some buffer overflows in ecdsatest The ASN.1 encoding of the modified ECDSA signature can grow in size due to padding of the ASN.1 integers. Instead of reusing the same signature buffer freshly allocate it. Avoids some buffer overflows caught by ASAN.