How secure is my hashing algorithm?
This is probably the common question on stack exchange but I need to know is this really safe as it seems to be?
//Password hashing stage 1
$a_password = sha1($a_password);
$a_password = md5($a_password);
$a_password… Continue reading How secure is my hashing algorithm?