CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2025/12/11 04:01:04
Modified files:
usr.bin/openssl: speed.c
Log message:
speed: remove unused counters and dead parameters
In the speed implementation, a number of unused variables and
parameters (save_count, c[][], rsa_c, dsa_c, ecdsa_c, ecdh_c, and
the num argument of print_message()/pkey_print_message()) were
still left behind.
These values are no longer referenced and cannot affect the
time-based benchmark logic, so remove them.
Functional behaviour of speed remains unchanged.
ok tb@