OK well that made no sense whatsoever. I'm guessing that is the actuall algorithm, but I didn't get most of it...Anyway I'm finished I'm just going to use that CRYPT_BLOWFISH method that seems to be good. Thanks all. BTW this is what I'm using (I believe it should work...🙂):
$pwrd="hello";
$i=0;
while ($i<20){
$pwrd=crypt($pwrd,CRYPT_BLOWFISH);
++$i;
}
$i=0;
while ($i<20){
$pwrd=crypt($pwrd,CRYPT_MD5);
++$i;
}
$i=0;
while ($i<20){
$pwrd=crypt($pwrd,CRYPT_STD_DES);
++$i;
}
$i=0;
while ($i<20){
$pwrd=crypt($pwrd,CRYPT_STD_EXT);
++$i;
}