Can you use OpenSSL to test the speed of an encrypted file?
by Ocina from LinuxQuestions.org on (#4SFHA)
So I encrypted a file using OpenSSL using this command
openssl enc -aes-128-ecb -e \
-in dawn.txt -out dawnciphered.txt \
-K 00112233445566778899aabbccddeeff
I want to be able to test how fast my computer decrypts/ encrypts the text in that file.
I know I can use Openssl speed aes-128-ecb to test to speed of the cipher, but can I adjust it to test how long it takes to use aes-ecb to run the text file?


openssl enc -aes-128-ecb -e \
-in dawn.txt -out dawnciphered.txt \
-K 00112233445566778899aabbccddeeff
I want to be able to test how fast my computer decrypts/ encrypts the text in that file.
I know I can use Openssl speed aes-128-ecb to test to speed of the cipher, but can I adjust it to test how long it takes to use aes-ecb to run the text file?