CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2023/07/06 08:37:40
Modified files:
lib/libcrypto : Makefile
lib/libcrypto/bn: bn_local.h
Added files:
lib/libcrypto/bn: bn_print.c
Log message:
Add bn_printf(), a replacement for ASN1_bn_print()
ASN1_bn_print() will be removed in an upcoming bump. This adds an internal
API that covers the same functionality but doesn't require that the caller
pass in a sufficiently large scratch space that ASN1_bn_print() may or may
not use. In addition, this takes a format string, which allows us to ditch
some extra dances.
ok jsing