Re: what's the difference with or without -evp when using openssl speed

2009-03-05 Thread xiao hong
No one?

Re: what's the difference with or without -evp when using openssl speed

2009-03-05 Thread Richard Levitte
In message 49ae12ec.5030...@gmail.com on Wed, 04 Mar 2009 13:34:36 +0800, xh xiangshu...@gmail.com said: xiangshu129 Hi everyone, xiangshu129 xiangshu129 what's the difference between the following two command? xiangshu129 openssl speed md5 xiangshu129 openssl speed -evp md5 xiangshu129

what's the difference with or without -evp when using openssl speed

2009-03-03 Thread xh
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