Just to put it in terms of code
<?php
define('BASE_CPU_SPEED',.0024); //2.4 gh machine (I think)
$alpha_length = 62; //upper & lower case + numbers
$pass_length = 8;
echo "The mean time to crack your password on a ";
echo (BASE_CPU_SPEED * 1000);
echo " ghz machine is ";
echo mean_time_to_crack($alpha_length,$pass_length);
mean_time_to_crack($al,$pl) {
return BASE_CPU_SPEED * (pow($al,$pl)/2);
}
?>
Weed,
Isn't there a way that makes the processor speed and the password length work together in the exponent to speed up the processing?