Would using both SHA1 and MD5 hashes of files help reduce the risk of deleting non duplicates

I’m making a program to compare all the files on a 3Tb drive by hash and delete duplicates. I was initially going to use MD5, but was worried that with 3Tb of files, there was a slight chance of a collision that would cause a… Continue reading Would using both SHA1 and MD5 hashes of files help reduce the risk of deleting non duplicates

is it secure to use sha256 to hash 64 cryptographically random byte data with 12 byte salt?

I read from a lot of sources that sha256 is not secure because it is fast. Most links that I read suggested bcrypt. However, I just want to know that if data is 64 cryptographically random byte, will attacker be able to find… Continue reading is it secure to use sha256 to hash 64 cryptographically random byte data with 12 byte salt?