Hi everyone,

what's the difference between the following two command?
openssl speed md5
openssl speed -evp md5

I checked the speed.c file, the -evp will call:

EVP_CIPHER_CTX_init
EVP_EncryptInit_ex
EVP_EncryptUpdate
EVP_EncryptFinal_ex


but the openssl speed md5 will call
EVP_Digest

I think the two methods both use the EVP api, there seems no difference.
If anything wrong, please correct me.

Thanks in advance!

Regards,
-Derek
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    openssl-users@openssl.org
Automated List Manager                           majord...@openssl.org

Reply via email to