43: Hashing and de-hashing data using PHP | PHP tutorial | Learn PHP programming

  Рет қаралды 160,321

Dani Krossing

Dani Krossing

Күн бұрын

Пікірлер: 135
@w3s_dev
@w3s_dev 6 жыл бұрын
I have been watching the series so far and I learned a lot since. Thank you for doing such well done tutorial and putting it on the web for free. Technology is powerful and its effectiveness is enhanced by people like you sir.
@wywlf6912
@wywlf6912 2 жыл бұрын
literally the best video out there explaining hash and dehash without spending more than 10 minutes
@fitimzenuni5036
@fitimzenuni5036 6 жыл бұрын
De-hashing is imposible mathematicly that is why it is safe. Hashing uses functions that can't be inverted so when u use the first parameter that is the actual pass and the second parameter that is the same pass just hashted it grabs the first parameter hashes it and compares it to the second parameter and if that is true it returns "1",that is how i think password_verify() works,since hashing is not an invertable function. BTW still the greatest PHP tutorials on youtube.
@Dani_Krossing
@Dani_Krossing 6 жыл бұрын
You are absolutely right :) I explained the process wrong in this video.
@qendrimvrella9962
@qendrimvrella9962 5 жыл бұрын
Nice 😊
@MrNsaysHi
@MrNsaysHi 4 жыл бұрын
But how come the password_hash() gives different outputs for the exact same input? It's not the same as using a sha1() function and then manually comparing it with the input.. Which is better? and why?
@malloumjr
@malloumjr 4 жыл бұрын
@@MrNsaysHi For security dear, if he can't give different in any second, hacker can have solution to hack
@MrNsaysHi
@MrNsaysHi 4 жыл бұрын
@@malloumjr But isn't hashing a one way function that always gives the same output for the same input?
@nebiyuyouhannes6047
@nebiyuyouhannes6047 4 жыл бұрын
this is the best channel for learning front end and back end thank you for this
@lucasarif4387
@lucasarif4387 7 жыл бұрын
Active channel making php tutorials? Unheard of - and awesome
@NickYea
@NickYea 4 жыл бұрын
This is an amazingly simple, informative and pleasurable video to watch, thanks for making it so well!
@zziq0437
@zziq0437 5 ай бұрын
THANKS HARITH FOR SHARING
@maherhanna2432
@maherhanna2432 2 жыл бұрын
Your tutorials are very good and simple to understand thank you very much
@meruBB
@meruBB 2 жыл бұрын
simple and easy. Thanks bro
@scottguo195
@scottguo195 7 жыл бұрын
You don't mean that you can actually DE-hash a hashed string right? If a hash can be de-hashed, it's not a hash anymore.
@petertester915
@petertester915 5 жыл бұрын
I'd recommend watching the video to the end.
@lollisko
@lollisko 4 жыл бұрын
No it doesnt dehash it at all. Theres a ”salt” at the beginning of gibberis marked with two dollar marks. It’s used on original hash (rest of the string) for making it more complex and random. Password_verify() uses that same salt for hashing now inputted password and combines it to hash picked from database, and if this matches - password was correct.
@mohammadabdulkarim7750
@mohammadabdulkarim7750 7 жыл бұрын
You are the best man .I suggest to make some project using all you learned to us such as inventory website or something like that .it will help us alot and you can make it payable and will buy it . I understand every word you said in HTML/CSS curse,PHP and OOP PHP .
@mmforyou
@mmforyou 7 жыл бұрын
Please make it free..
@GIGATHEBOT
@GIGATHEBOT 6 жыл бұрын
in HTML/CSS *"CURSE"*
@frosttree7236
@frosttree7236 6 жыл бұрын
Completely worth to buy! Please make some project tutorials!!!
@MB-zj3er
@MB-zj3er 2 жыл бұрын
Very helpful video. Thank you!
@mmelimahlobo7656
@mmelimahlobo7656 Жыл бұрын
Hie Daniel your teaching is amazing have you considered creating on lengthy tutorial that we can purchase in Udemy?
@zz98456
@zz98456 5 жыл бұрын
Thanks! Used your video to learn how to do test assignment.
@RichardSantos-bk9vz
@RichardSantos-bk9vz 4 жыл бұрын
Thanks now i understand how to use this hash 😁
@bigywhile8164
@bigywhile8164 3 жыл бұрын
I really appreciate your great help. Thank you really much!
@alizaman5716
@alizaman5716 7 жыл бұрын
HELLO SIR.. I M ASP.NET C# DEVELOPER. I LOVE UR TEACHING STYLE N CLAERLY I GET UR ALL PHP LECTURES. THANK YOU SOO MUCH FOR UR EFFORTS PLZ UPLOAD THE 41 42 VIDEOS IN THS SERIES... :)
@magicalbhakuni
@magicalbhakuni 7 жыл бұрын
learned a lot from this video.
@goddessgermanika2466
@goddessgermanika2466 3 жыл бұрын
Hi Dani, thank you very much for all those tutorials! In regards to passwords, what is your opinion about salting passwords? I was told that certain companies add it to hashed passwords. Do you think it would be good idea? and if so... do you have a tutorial for it by any chance?
@olegpristashkin9078
@olegpristashkin9078 3 жыл бұрын
How can we apply hash when the quantum computer will be finished? So can we assume, that the password hashing will be only a temporary method of protection? Am I right if I say that a good method of protection, in this case, is to limit attempts to log in up to 3 times an hour to avoid brut force?
@Mustafa-gd2rp
@Mustafa-gd2rp 7 жыл бұрын
I don't think password_verify actually dehashes, instead it hashes the input and uses an algorithm to see if it corresponds to the given hash (giving all the necessary like salt and cost)
@thelavina
@thelavina 6 жыл бұрын
each time you hash something its always different, so how would the password_verify function know in which exact way to hash the inputted password then?
@hechuan5075
@hechuan5075 6 жыл бұрын
its not always different, for example, MD5 you see when you download a file, if you MD5 that file, you will get the MD5 result, otherwise its pointless. say SHA256("nihao") will always yield the same result.
@wegvS
@wegvS 6 жыл бұрын
Actually it is never different. From Wikipedia: "A hash procedure must be deterministic-meaning that for a given input value it must always generate the same hash value"
@fitimzenuni5036
@fitimzenuni5036 6 жыл бұрын
a function with the same input can not produce more than one output else it is not a function at least i think i learned that on a calculus class.
@1988proxy
@1988proxy 5 жыл бұрын
Thank you very much for your videos!!!
@robinsonenrique2466
@robinsonenrique2466 6 жыл бұрын
Is better use BCRYPT or password_Default ?
@yukii_kamishiro
@yukii_kamishiro 4 жыл бұрын
Thank you, this help me alot.
@amoghdatar2726
@amoghdatar2726 6 жыл бұрын
*Will you pls reply to tell which is the **_BEST_** and **_SAFEST_** method of hashing passwords? BCrypt, Hashing It Two Times, S256, etc.?*
@Dani_Krossing
@Dani_Krossing 6 жыл бұрын
No just use BCrypt once :) BCrypt is automatically updated if it becomes outdated, so it will always be safe.
@keanutype0896
@keanutype0896 2 жыл бұрын
i have questions: 1. so basically when i Password_Has the first input i have, it will encrypt the text....but whatever i input there(ex: Test123) it IS STILL "Test123"? just being randomize when you echo it? 2. is Password_Verify() similar to If and AND comparison statement but it will decyper first the encrypted password? like in If statement, you are trying to compare it like: if($input == $hashedPwdInDb){ echo "1";} but unlike a regular If Statement, it has the function to decyper the hashed password then compare it to the $input? i hope i worded this correct. sorry english wasn't my first language. great tutorial!
@nicolesantos603
@nicolesantos603 2 жыл бұрын
5:45 dehash
@filodox21
@filodox21 7 жыл бұрын
Hello, your channel is fantastic. Did you know how many php classes you have?
@CredixNetwork
@CredixNetwork 7 жыл бұрын
Hello Daniel! Can I ask you a quick question? What color syntax/theme you're using? Thanks for the answer and for the great tutorial!
@rohansaand2023
@rohansaand2023 7 жыл бұрын
very informative, Thanks :)
@GerritforBazeja
@GerritforBazeja 6 жыл бұрын
You are wonderfull for me. I'm trying to make our website website with better inlog and more. All in php and mysqli. Your lessons are very helpfull. (I'm 60 years old now. first I did this all in dramweaver. grtGrrt
@abhikhan1313
@abhikhan1313 3 жыл бұрын
hey hi dani the link you have given in your description is showing the video is private
@vikaspadaliya2606
@vikaspadaliya2606 7 жыл бұрын
Can't find no.41 and 42 , are they missing?
@ashkanahmadi
@ashkanahmadi 4 жыл бұрын
kzbin.info/aero/PL0eyrZgxdwhwBToawjm9faF1ixePexft-
@yukihyo8394
@yukihyo8394 7 жыл бұрын
Is it also save to hash a password with sha512? And then for comparing them, instead of dehashing you hash the input and compare them with the database. Love this method as well tho :D
@gewoonpatatmayonais
@gewoonpatatmayonais 7 жыл бұрын
Nope, that is definitely not safe! Whenever a hackers steals the hashed passwords from your database, he can dehash it (with lookup tables) and get the full password from that one user. Bcrypt adds a randomized 'salt' to it so that it is (almost) impossible for the hacker to retrieve the original value. So, don't just hash passwords with sha or md5 and store them in a database.
@gewoonpatatmayonais
@gewoonpatatmayonais 7 жыл бұрын
For example, hash a password with sha512. Copy the value and paste it in the text area at this site: crackstation.net/ For simple passwords, you can get the value back. More complex passwords, however, may not be found.
@yukihyo8394
@yukihyo8394 7 жыл бұрын
what if you hash it like 3 times? using sha512, so you are hashing a hash?
@gewoonpatatmayonais
@gewoonpatatmayonais 7 жыл бұрын
King Otten you can, doesnt make it more secure. Can still be looked up in a rainbow table, hence why the salting process in bcrypt
@Dani_Krossing
@Dani_Krossing 7 жыл бұрын
name is absolutely right here. You should not use either md5, sha256 or sha512, since hackers figured out how to solve these algorithms long time ago. Thats why bcrypt is so awesome, because if hackers somehow (which is very unlikely) figure out how to bypass it, then bcrypt will just get updated and yet again be safe to continue using.
@gabrielfono844
@gabrielfono844 3 жыл бұрын
thanks so much thanks so much
@ВенциславИлиев-ъ5т
@ВенциславИлиев-ъ5т 4 жыл бұрын
When is the link to the login system tutorial? The link is not working for me?
@nsoftltd6878
@nsoftltd6878 3 жыл бұрын
Tnx bro
@pianoLee-sx9dx
@pianoLee-sx9dx 5 жыл бұрын
I don't think that you can get someone to enter a password and then check it in the database? I think once you hash the new password, it will always be different from the database and won't work...
@femaledeer
@femaledeer 3 жыл бұрын
If two different users create the same user name and password, how does the correct user get verified when logging in? You said two different hashes would be produced when the user registers. Is there a magic trick to determine the correct user to validate?
@MB-zj3er
@MB-zj3er 2 жыл бұрын
Don't allow duplicate user names when accounts are created. ;)
@willthe5135
@willthe5135 5 жыл бұрын
How can I hash with AES 256 bit encryption? Or is bCrypt already that strong?
@PHPRunnerTipsAndTricks
@PHPRunnerTipsAndTricks 5 жыл бұрын
So what is password_verify really doing? Could you test password_hash(input) with passwordinDb with an if statement?
@isaiahdaniel2522
@isaiahdaniel2522 5 жыл бұрын
Please the password hash did not work when i type it, any help plz
@pianoLee-sx9dx
@pianoLee-sx9dx 6 жыл бұрын
I forgot to ask.. do you still need to salt the password? I read somewhere that you still have to
@derxramos7906
@derxramos7906 5 жыл бұрын
Great tutorial :) I'd just like to ask how can I use that encrypted password to send email in PHPMailer? Thank you.
@marshal523
@marshal523 7 жыл бұрын
Please make a tutorial on how to create a contact form using php
@Dani_Krossing
@Dani_Krossing 7 жыл бұрын
Marshal Hembram I already did ;)
@marshal523
@marshal523 7 жыл бұрын
Kindly provide the link please :)
@NoThoughtAllFeels
@NoThoughtAllFeels 4 жыл бұрын
How did you get that index.php file in the first place
@mariusmihailionte3359
@mariusmihailionte3359 7 жыл бұрын
are you uploading again videos that you posted in 2015?
@BeyondReality
@BeyondReality Жыл бұрын
That doesn‘t work in my case. When I copy the hash and paste it into a variable, the verify method returns an invalid password 😢
@carlbaiden191
@carlbaiden191 4 жыл бұрын
The 43rd video is private...how can i get it pleas?
@kirilmladenov7852
@kirilmladenov7852 6 жыл бұрын
Guys, I am a little confused ( : What is the difference between hashing, real_escape function and prepared statements?
@MrBondSanjay1
@MrBondSanjay1 3 жыл бұрын
Please Dani Can you help me ? Code not work with me .I am using Atom.
@yanghyunmo1929
@yanghyunmo1929 5 жыл бұрын
Can I ask where is the full version of Login system tutorial? I remember you had it before in the tutorial.
@rashedulhasan5372
@rashedulhasan5372 4 жыл бұрын
yap..link isn't working. Would be useful to see hashing in action
@Venezuelangel
@Venezuelangel 4 жыл бұрын
It's been set to private. Probably the creator was catching a lot of heat for making it procedural instead object-oriented? I dunno. Maybe he wants to monetize it?
@gabrielvoss6251
@gabrielvoss6251 4 жыл бұрын
@@Venezuelangel no it's just on another channel @ZbII
@abdulkarimalbaik3873
@abdulkarimalbaik3873 5 жыл бұрын
what is type of String after hashing (String , int or byte) ????
@westfield90
@westfield90 6 жыл бұрын
Superb
@ambdcot3828
@ambdcot3828 5 жыл бұрын
Hey, video 44 is private, is this ok?
@devsabuj4818
@devsabuj4818 3 жыл бұрын
is it possible decode password hash
@Akosiyawin
@Akosiyawin 5 жыл бұрын
I'm getting an error says 'call to undefined function password_hash()' Idk why I did exactly what you does, any thoughts about it? Edit:I'm using 1.8.2 version of xampp and 5.4.22 Php Version does it affect my program?
@Dani_Krossing
@Dani_Krossing 5 жыл бұрын
Yes, you should definitely upgrade. A lot of changes were made since then. PHP is all the way at 7.0+ in its version now. It should fix your undefined error.
@Akosiyawin
@Akosiyawin 5 жыл бұрын
@@Dani_Krossing yep thank you very much. That's exactly what I did, coz back on your tutorial I saw the version of your Xampp was compiled on 2015 while mine is 2013, didn't notice that I was using an old version of xampp hehe, Thank you sir, I'm almost finish with this tutorial, have a good day.
@comfortbatcall
@comfortbatcall 6 жыл бұрын
Me it's always saying login=error in the url help how can it fix?
@dombiekong
@dombiekong 4 жыл бұрын
what about random salt?
@hachij_
@hachij_ 6 жыл бұрын
is this updated video? cuz, last time i checked is different from this one pls explain which parts you updated?
@Dani_Krossing
@Dani_Krossing 6 жыл бұрын
This video is updated and the most recent version of data hashing.
@adnanjan1298
@adnanjan1298 5 жыл бұрын
respected sir, i get a lot of knowledge from your lessons: now i have a problem, when i practice of password_hash function i receive this error message in chrome browser: {{{{{{Fatal error: Call to undefined function PASSWORD_HASH}}}} kindly help me.
@hanishaarora9590
@hanishaarora9590 6 жыл бұрын
super cool!!
@kestonsmith1354
@kestonsmith1354 3 жыл бұрын
You made the login video private so I can't view it.
@AndyChamberlainMusic
@AndyChamberlainMusic 4 жыл бұрын
link is broken
@anshultiwari2704
@anshultiwari2704 5 жыл бұрын
Suppose i have to store chat messages in my database in a secure and hashed format how can I dehash those text messages whenever it is displayed back to the user?? Can someone tell me a better way to encrypt text messages in php and MySQL database
@Jack-vv7zb
@Jack-vv7zb 4 жыл бұрын
You'll have to encrypt them instead of hash them. Encrypt means it uses a key and so they can be decrypted. It's less safe than hashing of course because if someone gets hold of the key then they can access everything.
@randalfjohn9848
@randalfjohn9848 2 жыл бұрын
This is lesson 43.. how can I get from lesson 1 to the end.. please 😭
@michaellussem1777
@michaellussem1777 4 жыл бұрын
Link to login-Tutorial isn‘t working
@AugerHybrid
@AugerHybrid 4 жыл бұрын
OMG it worked but sequence is "This video is private".
@ashkanahmadi
@ashkanahmadi 4 жыл бұрын
kzbin.info/www/bejne/gnSceJSOoMmrfJo
@renzjosefflacostales4015
@renzjosefflacostales4015 6 жыл бұрын
Sir is there any chance to view the normal password ni phpmyadmin coz i don't know to view the normal password in database.it will be hard especially when I forgot the password :( thanks in advance sir
@Dani_Krossing
@Dani_Krossing 6 жыл бұрын
No that would defeat the purpose of hashing it hehe. The point is that we SHOULD NOT be able to see the password in the database in case a hacker gains access.
@Kuminlul
@Kuminlul 6 жыл бұрын
so how do i hash the username with the same method like with the password?
@definedbass
@definedbass 5 жыл бұрын
method is the same but why would you hash the username? Username is public in most scenarios
@falconeye1594
@falconeye1594 7 жыл бұрын
42 is miss bro.
@riteshsingh214
@riteshsingh214 5 жыл бұрын
can you make a video on how to create a sub-domain dynamically through PHP i have done the same it is creating domain too but in root folder it is creating problem following is the code but in root folder it is creating not creating the folder of same name as entered by user it is creating folder named as'$domain.example.in'. Please help Thanks in advance.
@piotrpytkowski1542
@piotrpytkowski1542 3 жыл бұрын
So about this Login system tutorial (link starts at hashing part): kzbin.info/www/bejne/rpObkpSaabKFrpom42s - the movie is private, is this will be avaible?
@aaammm1888
@aaammm1888 4 жыл бұрын
44: vidoe on pvt whyyyyyyyy came so far
@ashkanahmadi
@ashkanahmadi 4 жыл бұрын
kzbin.info/www/bejne/gnSceJSOoMmrfJo
@cjvaans4484
@cjvaans4484 4 жыл бұрын
You talk way too fast as if the words are stitched together. Still, I thank for you these free tutorial videos.
@ashkanahmadi
@ashkanahmadi 4 жыл бұрын
You can turn on the subtitle and change the playback speed to 0.75. That should make it clearer for you
@xbond2089
@xbond2089 4 жыл бұрын
it dose not work when stored in database
@hachij_
@hachij_ 7 жыл бұрын
good
@ΛέανδροςΚουρτίδης-κ6β
@ΛέανδροςΚουρτίδης-κ6β 3 жыл бұрын
link does not work!!!
@Dani_Krossing
@Dani_Krossing 3 жыл бұрын
Yes it does!
@connorgdev
@connorgdev 7 жыл бұрын
It thought the whole point of hashing was you can never "de-hash" it? You can only re-hash new information and compare with the saved/old hash... I thought it was encryption and decryption where you could get the information back
@inferno7181
@inferno7181 7 жыл бұрын
Connor Gaunt it doesn't. It just hashes the password with the same salt and compares it to the one given.
@PabloGnesutta
@PabloGnesutta 4 жыл бұрын
The login video in the description of this video is broken T_T
@ashkanahmadi
@ashkanahmadi 4 жыл бұрын
kzbin.info/www/bejne/gnSceJSOoMmrfJo
@rahman_athu
@rahman_athu 5 жыл бұрын
Password verify always returning false
@moh.syafrianabie8899
@moh.syafrianabie8899 3 жыл бұрын
2:00
@ArifBillahOnGoogle
@ArifBillahOnGoogle 3 жыл бұрын
The title is rather misleading. You don't "de-hash" with password_verify()
@shaikansar1315
@shaikansar1315 6 жыл бұрын
when iam logging it takes any password and logging me in
@JustinTheVlogger
@JustinTheVlogger 3 жыл бұрын
Greate tutorial, but next please talk slow, cause some of your words are unhearable.
@boiski
@boiski 4 жыл бұрын
I tried to crack the password. Did it in 3 seconds
@NoThoughtAllFeels
@NoThoughtAllFeels 4 жыл бұрын
How
@thezvid
@thezvid 4 жыл бұрын
This Video is Private
@CabdacasiisCabdle
@CabdacasiisCabdle Ай бұрын
kkkkkkk
@inzMBL
@inzMBL 6 жыл бұрын
You talk funny
@Sean.Q
@Sean.Q 4 жыл бұрын
PAYWALLED Correct way ??? BS... KZbin money isn't enough for you? You really need to fish for a buck a month on Patreon?
@adityachopra3759
@adityachopra3759 6 жыл бұрын
Stop using the term "DE-HASH". It is invalid. You can't DE-HASH.
Одну кружечку 😂❤️
00:12
Денис Кукояка
Рет қаралды 1,2 МЛН
Why no RONALDO?! 🤔⚽️
00:28
Celine Dept
Рет қаралды 99 МЛН
Password Storage Tier List: encryption, hashing, salting, bcrypt, and beyond
10:16
Save HTML Form Data to a MySQL Database using PHP
24:38
Dave Hollingworth
Рет қаралды 214 М.
I gave 127 interviews. Top 5 Algorithms they asked me.
8:36
Sahil & Sarra
Рет қаралды 676 М.
Learn JSON in 10 Minutes
12:00
Web Dev Simplified
Рет қаралды 3,2 МЛН
Best Ways to Encrypt Passwords, Keys, & More with PHP
11:10
Delicious Brains
Рет қаралды 3,9 М.
PHP Security And Password Hashing Tutorial - Register & Login Form
21:47
Senaid Bacinovic
Рет қаралды 49 М.
PHP password hashing explained
3:40
Bro Code
Рет қаралды 5 М.
Одну кружечку 😂❤️
00:12
Денис Кукояка
Рет қаралды 1,2 МЛН