openssl/openssl

Support multiple EVP-named algorithms in `openssl speed`

Open

#22.545 aperta il 28 ott 2023

Vedi su GitHub
 (3 commenti) (2 reazioni) (0 assegnatari)C (11.262 fork)batch import
backlog fixhelp wantedtriaged: feature

Metriche repository

Star
 (30.157 star)
Metriche merge PR
 (Nessuna PR mergiata in 30 g)

Descrizione

Currently it is impossible to name more than one non-hardcoded algorithm (using the -evp option) in a single invocation of openssl speed (see #19053).

It would be nice if openssl speed supported multiple instances of -evp option in the same invocation, or provided an alternative way of naming multiple evp-named algorithms in a single run. Something like:

$ openssl speed -evp blake2b512 -evp blake2s256 sha1 sha256

or

$ openssl speed -evp-list 'blake2b512;blake2s256' sha1 sha256

Guida contributor