🔥🚨 *HASH GENERATOR GUI TKINTER APP:* kzbin.info/www/bejne/pqrVoaFtadyjj8U 💻 *My Source Codes:* www.buymeacoffee.com/fabiomusanni/extras ⬇️ *LEARN ON THE BEST LEARNING PLATFORMS (LINKS BELOW)* 😉💪 ⬇️ ☕ *Buy me a coffee:* www.buymeacoffee.com/fabiomusanni ❤️ *Support me monthly:* www.patreon.com/FabioMusanni 😍 *One-off donation:* www.paypal.me/FabioMusanni/ *SKILLSHARE* _(Python, Web Dev, UI/UX Design, Music, Art, Animation and a lot more)_ 🔗 skillshare.eqcm.net/5gxzD2 (Affiliate) *DATACAMP* _(Python, ChatGPT, SQL, Power BI, and a lot more)_ 🔗 datacamp.pxf.io/vN1bDj (Affiliate) *COURSERA PYTHON* _(For beginners, Data Science, Data Analysis, AI, Cybersecurity and a lot more):_ 🔗 imp.i384100.net/k0Nk60 (Affiliate) *COURSERA WEB DEVELOPMENT* _(Full Stack, Front-End, Back-End, Web Design and a lot more):_ 🔗 imp.i384100.net/EKWxBW (Affiliate) Thank you for the support!❤ 🎥All my videos about Python: kzbin.info/aero/PLs8qUrmRvaR0IT4IwJl-LSweAdACW-yLK
@springsterz37293 жыл бұрын
I found this tutorial very useful you are the best!
@FabioMusanni3 жыл бұрын
Thank you very much! I'm glad it helped. Stay tuned, a lot more to come 😉🧐
@raquelibanezlopez85392 жыл бұрын
Thank you so much, Fabio. This tutorial saved my life! Awesome!
@FabioMusanni2 жыл бұрын
Hello Raquel, thank you so much for the comment! 😊 I'm so happy I saved a life 😁 Jokes aside, glad it helped 😉
@IN3DMEX2.03 жыл бұрын
Me haz salvado la vida!!! Michas gracias!!
@patfacunla16873 жыл бұрын
Thank You for this wonderful tutorial!
@metalalive20063 жыл бұрын
since there is no cryptographical hash algorithm which has exactly zero collision probability, what are possible strategies to handle collision for the application which requires the message digest (the hashed value of the file content) as an index to uniquely identify the file in your storage ?
@bn_ln2 жыл бұрын
let each hash be the key to a list, and then search the list.
@FabioMusanni2 жыл бұрын
Thanks for the comment and sorry for my late reply. If you use sha-256 there is a really really remote probability of collision and you would have to hash loads (4.8 x 10^38) of files to even have one (I'd say it's impossible to have a collision among the files in your hard drives). That being said, if you want to decrease this probability even more, you could use the size of the file too. It's already extremely difficult for a file to have the same hash as a completely different file, let alone the same size as well. Maybe add the size in bytes at the beginning of the hash string and use size+hash as the index. This is just an idea. 😊 🤓
@gillespiewrga9 ай бұрын
Thanks. You saved me a few hours. Able to verify my incoming file's checksum, now. It was unknown hash type and unknown range of the data. Turns out my input's header and footer chunks were not included in their provided checksum.
@FabioMusanni9 ай бұрын
I'm glad the video helped! I also created a version with the GUI if you want to check it out: kzbin.info/www/bejne/pqrVoaFtadyjj8U 😊💪
@EmmzNFT2 жыл бұрын
Can you find a two different word with the same hashes ? Is it possible ?
@FabioMusanni2 жыл бұрын
Hello Miranda 😊 It's possible, however, the question should be: how long would it take to find one collision? The first SHA-1 collision was found/created on purpose in 2017 after 9 quintillions computations in total (you can find more info at: shattered dot io). A SHA-256 collision has never been found, so if you use it, I wouldn't worry about finding a collision 🤓
@EmmzNFT2 жыл бұрын
@@FabioMusanni really ? i can't manage to find the Collision or the said 2 words with same hash
@FabioMusanni2 жыл бұрын
Exactly, if they haven't found one even trying with A LOT of computational power, it would be a sort of miracle if that happened to you by chance 😊
@jnicholas8462 жыл бұрын
Thank you very much sir!
@akhils46733 жыл бұрын
sir how to reverse sha256
@adithyavedula12703 жыл бұрын
It would take you billions of years, that's the security of sha-256
@dattaveerboda24053 жыл бұрын
I'm not sure if I understood you correctly, but hashing is one way function, you can't reverse it, no way to reverse the text from Hash Value