This tutorial is very clear and concise - and no fluff. You are a go to resource whenever I need to quickly learn any new concept!
@Ruostesieni Жыл бұрын
I wanted a create a cool little software for my PhD research, which automatically fetches data from a few external databases. Then I realized I would need to just enter my password into the script itself, so I decided to write a simple encryption script to encrypt said plain text password. THEN I realized it's stupidly easy to crack, so I scrambled the order of the encrypted password with a scrambling key and found it to be pretty easy to crack too, since the key is stored locally. Now I've reached the point that I'm studying about hashing, salting and peppering and found my way here, even though my field of study has NOTHING to do with cryptography or computer sciences. Man, what a journey, and all in the span of like two hours.
@lRemoved Жыл бұрын
These videos are worth gold. 👌🏻🙏🏻
@KunalsinhSolanki5 ай бұрын
Thank You for making my work easy by giving better explanation about hashing. God bless you! Keep it up!
@nanoic2964 Жыл бұрын
This is really good, would you ever make a follow up video to include salting hashes?
@saadhamid5609 Жыл бұрын
Why do you not have a udemy course?
@indorexian Жыл бұрын
@@1-hasame here!
@dinapurpletonz5943 ай бұрын
Big help for my uni work thank you!
@NextGen_Codes7 ай бұрын
clear, simple and easy to understand
@iwonaholoven5651 Жыл бұрын
Thank you, very useful content
@Ramsey.001 Жыл бұрын
Know how to compare 2 hashes ?, please help me
@Skrattoune3 ай бұрын
Quick question: I am working with Django, and I'm using hash to test if some generated files are correct or not. However for some operations, the generated hash is different when it is produced on my development system (Windows PC) or on my production server/github action testing. Could anyone explain me why?
@ATCraiger11 ай бұрын
For verifying files, couldn't the checksum / SHA256 file also be changed to match the malicious program? Is that a more difficult thing to fake? It seems that if you're being targeted, it'd be easy to alter a text file if you can change what .exe they're downloading.
@NeuralNine10 ай бұрын
Of course you need to make sure that the checksum you are comparing against is legit. It has to come from a trusted source. But then, changing the program so that it somehow ends up producing the same checksum, even though it has different code, is virtually impossible.
@Abhishekverma-ip7yx Жыл бұрын
Very neat explanation....
@AliShahrabi-q6f17 күн бұрын
understandable and appealing 👌
@acekiku584810 ай бұрын
This help me alot thank you
@oneeyedphotographer10 ай бұрын
If its a password, isn't encryption the better choice? Or both. I want a secure hash of files of arbitrary size. I'm not finding a lot of help.
@GutsToCuts9 ай бұрын
encryption is designed to be reversed. hashing is a one way function that cannot be reversed. If you do not intend to reverse it, then you should use a one way function.
@yiannisnik-ew2hs Жыл бұрын
Thanks great video!!!
@zaphkiel3334 Жыл бұрын
Does anyone knows how to hash a hex value instead of a string?
@hibamallouhi2735 Жыл бұрын
How did you get the correct_hash value? where is it in a download website?
@naderbazyari2 Жыл бұрын
great video thanks a lot.
@sennlich11 ай бұрын
Thank you ! 😉
@adamfatyga7977 Жыл бұрын
Everything - coll searching app!
@oguzhantopaloglu9442 Жыл бұрын
Maybe you can make a video about Java's hashCode method that is inside Object class :)
@kacperm290911 ай бұрын
good material ;)
@prompt_shark Жыл бұрын
Thanks big dog!
@wh00ana Жыл бұрын
thank youuu
@Miguel-jo1jt Жыл бұрын
video foda
@kanchungtsang1401 Жыл бұрын
very confusing
@xkisses92 Жыл бұрын
bro calls python pythin 👽👽💀💀
@KhalilYasser Жыл бұрын
Thank you very much ``import hashlib with open('Sample.txt', 'rb') as f: f.seek(0) print(hashlib.file_digest(f, 'sha256').hexdigest()) f.seek(0) print(hashlib.sha256(f.read()).hexdigest())``
@abdullahfall1517 Жыл бұрын
whats this mean explain please
@KhalilYasser Жыл бұрын
@@abdullahfall1517 f.seek(0): This line resets the file's position back to the beginning so that we can read the file content again
@abdullahfall1517 Жыл бұрын
@@KhalilYasser oh, is that why you do it twice. thank you bro