Excuse my knowledge because I am still learning to code on my own and not an expert.
I use crypt with blown fish $2a$10$, My secured password will show this for instance, $2a$10$137276602359697140be5eISqj55.fGmbUo4PEZoLRpWmxspLiWJK
As it starts with $2a$10 they will know the way I used, will it affect me? Can they->hackers even do anything with my secured password as I use random salt/key hashed and encrypted? (Rainbow tables).
Because I got scared after I saw this Password IMAGE
Finally, last question. Heard that loops make it longer/slower to get password results during an attack but, what does it do to $hash? Maximum loop limit ? Does it have any side-affects?
for($i = 0; $i < 100000; $i++) {
$hash = crypt('sha512', $hash);
}
Thanks for reading, every answer will be much appreciated. Best regards, Mr Pro Pop!