Advertisement
Guest User

Untitled

a guest
Dec 23rd, 2011
476
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.60 KB | None | 0 0
  1. # cat /proc/cpuinfo | grep "^processor" | wc -l
  2. 16
  3.  
  4. # cat /proc/cpuinfo | grep "^model name" | head -1
  5. model name : Intel(R) Xeon(R) CPU E5520 @ 2.27GHz
  6.  
  7. # openssl speed md5
  8. Doing md5 for 3s on 16 size blocks: 3787525 md5's in 3.00s
  9. Doing md5 for 3s on 64 size blocks: 3016201 md5's in 3.00s
  10. Doing md5 for 3s on 256 size blocks: 1856180 md5's in 3.00s
  11. Doing md5 for 3s on 1024 size blocks: 732900 md5's in 3.00s
  12. Doing md5 for 3s on 8192 size blocks: 110783 md5's in 3.00s
  13. OpenSSL 0.9.8e-fips-rhel5 01 Jul 2008
  14. built on: Thu Sep 3 14:22:06 EDT 2009
  15. options:bn(64,64) md2(int) rc4(ptr,int) des(idx,cisc,16,int) aes(partial) blowf
  16. compiler: gcc -fPIC -DOPENSSL_PIC -DZLIB -DOPENSSL_THREADS -D_REENTRANT -DDSO_DM
  17. available timing options: TIMES TIMEB HZ=100 [sysconf value]
  18. timing function used: times
  19. The 'numbers' are in 1000s of bytes per second processed.
  20. type 16 bytes 64 bytes 256 bytes 1024 bytes 8192 bytes
  21. md5 20200.13k 64345.62k 158394.03k 250163.20k 302511.45k
  22.  
  23. # openssl speed sha1
  24. Doing sha1 for 3s on 16 size blocks: 3559440 sha1's in 3.00s
  25. Doing sha1 for 3s on 64 size blocks: 2625417 sha1's in 3.00s
  26. Doing sha1 for 3s on 256 size blocks: 1452086 sha1's in 3.00s
  27. Doing sha1 for 3s on 1024 size blocks: 520835 sha1's in 3.00s
  28. Doing sha1 for 3s on 8192 size blocks: 74595 sha1's in 3.00s
  29. OpenSSL 0.9.8e-fips-rhel5 01 Jul 2008
  30. built on: Thu Sep 3 14:22:06 EDT 2009
  31. options:bn(64,64) md2(int) rc4(ptr,int) des(idx,cisc,16,int) aes(partial) blowf
  32. compiler: gcc -fPIC -DOPENSSL_PIC -DZLIB -DOPENSSL_THREADS -D_REENTRANT -DDSO_DM
  33. available timing options: TIMES TIMEB HZ=100 [sysconf value]
  34. timing function used: times
  35. The 'numbers' are in 1000s of bytes per second processed.
  36. type 16 bytes 64 bytes 256 bytes 1024 bytes 8192 bytes
  37. sha1 18983.68k 56008.90k 123911.34k 177778.35k 203694.08k
  38.  
  39. # openssl speed rmd160
  40. Doing rmd160 for 3s on 16 size blocks: 2786817 rmd160's in 3.00s
  41. Doing rmd160 for 3s on 64 size blocks: 1855695 rmd160's in 3.00s
  42. Doing rmd160 for 3s on 256 size blocks: 933987 rmd160's in 3.00s
  43. Doing rmd160 for 3s on 1024 size blocks: 311666 rmd160's in 3.00s
  44. Doing rmd160 for 3s on 8192 size blocks: 43238 rmd160's in 3.00s
  45. OpenSSL 0.9.8e-fips-rhel5 01 Jul 2008
  46. built on: Thu Sep 3 14:22:06 EDT 2009
  47. options:bn(64,64) md2(int) rc4(ptr,int) des(idx,cisc,16,int) aes(partial) blowf
  48. compiler: gcc -fPIC -DOPENSSL_PIC -DZLIB -DOPENSSL_THREADS -D_REENTRANT -DDSO_DM
  49. available timing options: TIMES TIMEB HZ=100 [sysconf value]
  50. timing function used: times
  51. The 'numbers' are in 1000s of bytes per second processed.
  52. type 16 bytes 64 bytes 256 bytes 1024 bytes 8192 bytes
  53. rmd160 14863.02k 39588.16k 79700.22k 106381.99k 118068.57k
  54.  
  55. # openssl speed sha256
  56. Doing sha256 for 3s on 16 size blocks: 2699497 sha256's in 3.00s
  57. Doing sha256 for 3s on 64 size blocks: 1637013 sha256's in 3.00s
  58. Doing sha256 for 3s on 256 size blocks: 752374 sha256's in 3.00s
  59. Doing sha256 for 3s on 1024 size blocks: 237569 sha256's in 3.00s
  60. Doing sha256 for 3s on 8192 size blocks: 32225 sha256's in 3.00s
  61. OpenSSL 0.9.8e-fips-rhel5 01 Jul 2008
  62. built on: Thu Sep 3 14:22:06 EDT 2009
  63. options:bn(64,64) md2(int) rc4(ptr,int) des(idx,cisc,16,int) aes(partial) blowf
  64. compiler: gcc -fPIC -DOPENSSL_PIC -DZLIB -DOPENSSL_THREADS -D_REENTRANT -DDSO_DM
  65. available timing options: TIMES TIMEB HZ=100 [sysconf value]
  66. timing function used: times
  67. The 'numbers' are in 1000s of bytes per second processed.
  68. type 16 bytes 64 bytes 256 bytes 1024 bytes 8192 bytes
  69. sha256 14397.32k 34922.94k 64202.58k 81090.22k 87995.73k
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement