You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This change hopes to provide a better alignement of pkeyread with other
performance tools we have. The pkeyread enables as to evaluate speed of
reading various keys in der/pem formats. This requires user to specifi
desired key and format on command line. This makes pkeyread different
to other tools which seem to have a common set of options:
./tool_name --terse 2
command line above executes tool tool_name running test using 2
threads with terse output. The idea of this change is to provide
implicit mode for pkeyread where key and format is determined
from command name. For example to run evaulation for rsa key
in pem format using 2 threads one runs tool:
./rsa.pem 2
The tool for rsa essentially becames a symlink to pkeyread binary.
This should help us to create us more simple shell scripts to
run performacne test. For example to run all tests for pem
keys we can do something like this in shell
for perf_tool in *.pem ; do
./$perf_tool --terse 2 ;
done
0 commit comments