Questions tagged [md5]

Cryptographic hash function with a 128-bit (16-byte) hash value. MD5 is no longer considered a secure hash and should not be used to protect sensitive information like passwords

MD5 is incredibly weak on modern computers, and can be easily broken. If you are looking to securely hash values, consider something stronger like bcrypt

MD5 (Message-Digest algorithm 5) is a widely used cryptographic hash function with a 128-bit (16-byte) hash value. Specified in RFC 1321, MD5 has been employed in a wide variety of security applications, and is also commonly used to check the integrity of files. However, it has been shown that MD5 is not collision resistant; as such, MD5 is not suitable for applications like SSL certificates or digital signatures that rely on this property. An MD5 hash is typically expressed as a 32-digit hexadecimal number.

References:

4054 questions
1
vote
2 answers

cURL return in batch with space in string

use cURL to get an MD5 value of a string that I have previously passed (% STR%). This works fine, but as soon as there are spaces in %STR%, the code no longer works. If I put the URL and %STR% in "" nothing works anymore. Can you help me? set…
omnibut
  • 11
  • 1
1
vote
1 answer

vulnerabilities in password hashing

The Python code attached receives the hash function of an input string (for example, the user's password) and generates a 156-bit Hash using MD5.What vulnerabilities that make password hashing unsuitable can exist in this code. # from Crypto.Hash…
hasti
  • 13
  • 3
1
vote
1 answer

Accessing GPU through Java for Salted Hashing

I'm looking to write a program that can do some salted (MD5) hashing for me. To reduce the impact on my system, and increase the speed, I want to run the calculations through the GPU. So I have a few questions: 1) Does Java have native support for…
GBleaney
  • 2,096
  • 2
  • 22
  • 40
1
vote
1 answer

Any way to MD5 hash a string within WiX?

I have been googling and read through the WiX tutorial (http://www.tramontana.co.hu/wix/), but I am unable to see a simple way to create an MD5 hash of a string/property. Does anyone know of any built in WiX Installer methods to do this or is my…
Josh Danko
  • 123
  • 9
1
vote
1 answer

Validate md5 of file

I want to make a batch file that: Set a md5 to variable “temp” Get md5 of a new file and set it to “newmd5” Compare temp to newmd5 Echo “ok” if equal. Else echo “wrong file” This is what I wrote so far: @ECHO OFF set…
1
vote
1 answer

Pure Lua md5 using a byte array as input instead of string

I've been working in an algorithm that I found in this link: Pure Lua implementation of md5 to use in an embedded system, but it uses strings as input. For my specific application, the hash need to receive an hex array like that:…
Ctnalves
  • 11
  • 2
1
vote
4 answers

convert string value to md5

I'm trying to convert String to md5 that what i did : public static string MD5Hash(string input) { StringBuilder hash = new StringBuilder(); MD5CryptoServiceProvider md5provider = new MD5CryptoServiceProvider(); …
Bfs
  • 25
  • 1
  • 7
1
vote
1 answer

Comparing MD5 of downloaded files against files on an SFTP server in Python

Here I am trying to list all the MD5's of the files I downloaded and compare them to the original to see if they are the same Files. I can't access a server to test this code right now but I was really curious if it would work... Does someone have a…
1
vote
1 answer

Java download the same Blob to pdf file multiple times give md5 always different

I'm developing a little program in Java for massively compare blob stored in Oracle Database with file on a remote disk. For file comparison I'm using md5 hash. The strange behaviour of my program is that every time I download the same blod I get…
1
vote
1 answer

Calculate the MD5 hash from an online image

I need to calculate the MD5 hash of an online image For a locally saved image, I tried this code and it works as expected: public static string GetHashFromFile(string fileName, HashAlgorithm algorithm) { HashAlgorithm MD5 = new…
Christian
  • 164
  • 1
  • 10
1
vote
2 answers

collision possiblity of 16-char and 32-char md5

I know 16-char md5 string is the 8th and 24th chars of 32-char md5 string, eg: 469e80d32c0559f8 7fef6171469e80d32c0559f88b377245 My question is: given two different string and calculate their 16 and 32 md5, is the collision possiblity of their 16…
Tom
  • 5,848
  • 12
  • 44
  • 104
1
vote
1 answer

MD5 hashing for all fines in same directory - error no such file or directory

I wouldlike to generate md5 for each file in directory but actually I have always the same problem : Traceback (most recent call last): File "generate_md5.py", line 43, in generate_dir(argument_path) File "generate_md5.py", line…
AC-1994
  • 83
  • 9
1
vote
1 answer

Powershell Creates Different Zip File?

I'm creating a zip file from a directory in two ways in Win10. The first method using "Right-Click...Send To...Compressed (zipped) folder" The second method using Powershell Compress-Archive. I wanted to automate the process using Powershell. The…
1
vote
1 answer

How to generate MD5 sum in C# and execute the code?

I am new to C# just want to ask some questions. I got a MD5 sum in C#, I should put the code in a class, but where am I going to call this method code from? ASPX, or what?. I remember that class cannot run on its own. How to write the method to…
CutexBabies
  • 103
  • 1
  • 4
  • 10
1
vote
1 answer

Column Value is Hashed or not

How to identify that a column in oracle is encrypted using DBMS_CRYPTO.HASH or DBMS_OBFUSCATION_TOOLKIT.MD5 or not Table with HASH Value Is there any function that i can run across all columns of the oracle database (ALL_TAB_COLUMNS) which will…
Rajib Saha
  • 11
  • 2
1 2 3
99
100