PHP SHA1 Salt Encryption Tutorial

preview_player
Показать описание
PHP SHA1 Salt Encryption Tutorial

***

Рекомендации по теме
Комментарии
Автор

Thank you for sharing this video. I was using only MD5, and this video helped me to learn about the vulnerability of reversing unsalted password, so now I am salting my passwords and using SHA1

jeremycanfield
Автор

Thank you very much. This is pure gold. Simple and easy!

melhime
Автор

very easy and concise tutorial! thank you very much

hlk
Автор

NICE JOB. ive been to 100's of sites and they didn't help me. Excellent. And I never leave youtube messages. THANKS!!

sandman
Автор

thank you so much. you saved my day!!!

siminshaikh
Автор

I know this is just a basic tutorial, but you really should use a randomly generated salt for each password to make it more secure.

undead
Автор

Nice tutorial
My comments, instead of using a fixed salt rather use something like this

$salt = rand
$password = $_POST['password'] . $salt;
$password = sha1($password);

So every time it will be a random generated number to use as a salt.
Regards

daneelsdon
Автор

Sha is one way. How did you reverse this? It's impossible

prabu
Автор

It will better when you share your code you uses there please let me know that link...

developeraccount
Автор

whats ur password type, is it binary?

wvanye