I was looking around in the support forums at apple.com and i fould this interesting little benchmark and it seems to be pretty accurate too. My 2.16 Ghz Macbook pro 17" took 36 seconds to complete the task...
to run it go to terminal and copy and paste this code
Test 1 : Single thread performance test
t1=`date +%s`; openssl rand 123456789 -base64 | openssl enc -bf -k guess | openssl sha1; t2=`date +%s`; t3=$((t2-t1)); echo $t3
Test 2: Multi thread performance test (more accurate)
t1=`date +%s`; r=0; while [ $r -le 4 ]; do openssl rand 123456789 -base64 | openssl enc -bf -k guess | openssl sha1 & r=$((r+1)); done; wait; t2=`date +%s`; t3=$((t2-t1)); echo $t3
Please post your results
EDIT
here is the link to the thread at apple support forum
http://discussions.apple.com/thread.jspa?messageID=1839066�
to run it go to terminal and copy and paste this code
Test 1 : Single thread performance test
t1=`date +%s`; openssl rand 123456789 -base64 | openssl enc -bf -k guess | openssl sha1; t2=`date +%s`; t3=$((t2-t1)); echo $t3
Test 2: Multi thread performance test (more accurate)
t1=`date +%s`; r=0; while [ $r -le 4 ]; do openssl rand 123456789 -base64 | openssl enc -bf -k guess | openssl sha1 & r=$((r+1)); done; wait; t2=`date +%s`; t3=$((t2-t1)); echo $t3
Please post your results
EDIT
here is the link to the thread at apple support forum
http://discussions.apple.com/thread.jspa?messageID=1839066�