How can I interpret openssl speed output?

前端 未结 1 1552
梦谈多话
梦谈多话 2021-02-04 12:25

I ran openssl speed on my Ubuntu computer. Some results:

Doing md4 for 3s on 16 size blocks: 9063888 md4\'s in 3.00s
Doing md4 for 3s on 64 size blo         


        
相关标签:
1条回答
  • 2021-02-04 12:48

    While it could probably be worded better, it pretty much means what it says - run the md4 hash routine in a loop for 3 seconds with a 16 byte input. After 3 seconds, observe that we ran just a bit over 9 million iterations. That's about 144 million bytes processed, or 48 million bytes per second (where "million" means 10^6).

    0 讨论(0)
提交回复
热议问题