Tagged Questions

Cryptographic hash function with a 128-bit (16-byte) hash value.

learn more… | top users | synonyms

109
votes
14answers
103k views

Generate MD5 hash in Java

Is there any method to generate MD5 hash of a string in Java?
49
votes
10answers
4k views

Is there an MD5 Fixed Point where md5(x) == x?

Is there a fixed point in the MD5 transformation, i.e. does there exist x such that md5(x) == x?
46
votes
4answers
20k views

Get MD5 hash of a files without open it in Python

I have used hashlib (which replaces md5 in Python 2.6/3.0) and it worked fine if I opened a file and put its content in hashlib.md5 function. The problem is with very big files that their sizes could ...
38
votes
17answers
3k views

What is the best “forgot my password” method?

I'm programming a community website. I want to build a "forgot my password" feature. Looking around at different sites, I've found they employ one of three options: send the user an email with a ...
37
votes
16answers
43k views

In Java, how do I convert a byte array to a string of hex digits while keeping leading zeros?

I'm working with some example java code for making md5 hashes. One part converts the results from bytes to a string of hex digits: byte messageDigest[] = algorithm.digest(); StringBuffer ...
36
votes
12answers
30k views

using Java to get a file's md5 checksum?

I am looking to use java to get the md5 checksum of a file. I was really surprised but I haven't been able to find anything that shows how (and the best way) to get the md5 checksum of a file. Any ...
27
votes
13answers
2k views

How can it be impossible to “decrypt” an MD5 hash?

I was reading a question about MD5, and it made me remember something that boggles me. Very simple question, and I'm sorry if it's not a good one. I just can't understand how you convert something to ...
24
votes
3answers
10k views

MD5 algorithm in Objective C

How to calculate the MD5 in objective C ?
23
votes
14answers
6k views

How come MD5 hash values are not reversible?

One concept I've always wondered about is the use of cryptographic hash functions and values. I understand that these functions can generate a hash value that is unique and virtually impossible to ...
21
votes
13answers
25k views

What's the difference between SHA and MD5 (in PHP)?

When you're hashing a password (or anything else) in PHP, does it make any difference if you use SHA or MD5?
20
votes
4answers
649 views

MD5 hash discrepancy between Python and PHP?

I'm trying to create a checksum of a binary file (flv/f4v, etc) to verify the contents of the file between the server and client computers. The application that's running on the client computer is ...
19
votes
8answers
33k views

(PHP) SHA1 vs md5 vs SHA256: which to use for a PHP login?

I'm making a php login, and I'm trying to decide whether to use SHA1 or Md5, or SHA256 which I read about in another stackoverflow article. Are any of them more secure than others? For SHA1/256, do I ...
19
votes
15answers
5k views

Reversing an MD5 Hash

I have passwords stored in a database using md5, and was wondering if there was a way to reverse the hash to email the user's password to him in case they forget it. If that's not the most ...
18
votes
12answers
2k views

Going from unsalted to salted MD5 passwords

I have a LAMP (PHP) website which is becoming popular. I played it safe by storing the user passwords as md5 hashes. But I now see that's not secure; I should have salted the md5 hash - because it's ...
17
votes
7answers
2k views

What is currently the most secure one-way encryption algorithm?

As many will know, one-way encryption is a handy way to encrypt user passwords in databases. That way, even the administrator of the database cannot know a user's password, but will have to take a ...
15
votes
9answers
5k views

Can two different strings generate the same MD5 hash code?

For each of our binary assets we generate a MD5 hash. This is used to check whether a certain binary asset is already in our application. But is it possible that two different binary assets generate ...
14
votes
5answers
1k views

Is it safe to store passwords hashed with MD5CryptoServiceProvider in C#?

We are storing hashed passwords in a database table. We prepend each password with a random salt value and hash using MD5CryptoServiceProvider. Is this safe? I have heard MD5 was "broken". If not, ...
14
votes
5answers
977 views

Reproducable MD5/SHA1 on a rebuild of C# .exe

I'll give you a little bit of background first as to why I'm asking this question: I am currently working in a stricly-regulated industry and as such our code is quite carefully looked-over by ...
14
votes
4answers
2k views

What are the chances that two messages have the same MD5 digest and the same SHA1 digest?

Given two different messages, A and B (maybe 20-80 characters of text, if size matters at all), what is the probability that the MD5 digest of A is the same as the MD5 digest of B and the SHA1 digest ...
13
votes
3answers
728 views

HMAC vs simple MD5 Hash

Anyone can point out what is real advantage of using HMАC. For example, I have a text T and a key K, I can use HMAC-MD5 algorithm to get a signature. I can also use Md5(T + K) to get the signature. ...
12
votes
10answers
12k views

Is it possible to decrypt md5 hashes?

Someone told me that he has seen software systems that would accept MD5 encrypted passwords (through various integrations with other systems), decrypt them, and store them in the systems own database ...
12
votes
13answers
25k views

In C++, How to get MD5 hash of a file?

I've the file path. How can I get the MD5 hash of it? Thanks
11
votes
3answers
917 views

What hash algorithms are parallelizable? Optimizing the hashing of large files utilizing on multi-core CPUs

I'm interested in optimizing the hashing of some large files (optimizing wall clock time). The I/O has been optimized well enough already and the I/O device (local SSD) is only tapped at about 25% of ...
10
votes
8answers
1k views

Is MD5 still good enough to uniquely identify files?

Is MD5 hashing a file still considered a good enough method to uniquely identify it given all the breaking of MD5 algorithm and security issues etc? Security is not my primary concern here, but ...
10
votes
7answers
5k views

Maximum length for MD5 encryption

What is the maximum length of the string that can have md5 encription or Is it has no limit, and if so what will be the max lendth of the md5 encripted value?
10
votes
2answers
967 views

Does any published research indicate that preimage attacks on MD5 are imminent?

I keep on reading on SO that MD5 is broken, bust, obsolete and never to be used. That angers me. The fact is that collision attacks on MD5 are now fairly easy. Some people have collision attacks ...
9
votes
3answers
4k views

How can I get the MD5 fingerprint from Java's keytool, not only SHA-1?

As I want to use Google maps in my application, I need the debug certificates' MD5 fingerprint. I tried following.: (Here I copied the debug.keystore file from C:\Documents and ...
9
votes
4answers
284 views

Computing an md5 hash of a data structure

I want to compute an md5 hash not of a string, but of an entire data structure. I understand the mechanics of a way to do this (dispatch on the type of the value, canonicalize dictionary key order ...
9
votes
4answers
2k views

Best practices for efficiently storing md5 hashes in mysql

Possible field types: BINARY(16) CHAR(32) BIGINT + BIGINT How do I decide which one to use?
9
votes
4answers
1k views

What's the shortest pair of strings that causes an MD5 collision?

Up to what string length is it possible to use MD5 as a hash without having to worry about the possibility of a collision? This would presumably be calculated by generating an MD5 hash for every ...
9
votes
2answers
419 views

Fun with md5 - digests of digests

Two questions actually: 1) Does there exist a 128-bit number whose md5 hash is itself? X == md5(X) - does 'X' exist and can it be found without brute force? 2) Does there exist two 128-bit md5 ...
9
votes
6answers
3k views

Pros and cons of using md5 hash of URI as the primary key in a database

I'm building a database that will store information on a range of objects (such as scientific papers, specimens, DNA sequences, etc.) that all have a presence online and can be identified by a URL, or ...
9
votes
8answers
2k views

How many random elements before MD5 produces collisions?

I've got an image library on Amazon S3. For each image, I md5 the source URL on my server plus a timestamp to get a unique filename. Since S3 can't have subdirectories, I need to store all of these ...
8
votes
3answers
96 views

Which hash algorithm can be used for duplicate content verification?

I have an xml file, where I need to determine if it is a duplicate or not. I will either hash the entire xml file, or specific xml nodes in the xml file will be used to then generate some kind of ...
8
votes
4answers
139 views

Determine whether any files have been added, removed, or modified in a directory

I'm trying to write a Python script that will get the md5sum of all files in a directory (in Linux). Which I believe I have done in the code below. I want to be able to run this to make sure no ...
8
votes
5answers
373 views

What is the purpose of salt?

In a Linux system, passwords are stored using an MD5 hash. Why can the usage of "salt" protect the system more? Particularly, I want to make clear the following two The salt is said to be stored in ...
8
votes
5answers
741 views

Will the MD5 cryptographic hash function output be same in all programming languages?

I am basically creating an API in php, and one of the parameters that it will accept is an md5 encrypted value. I don't have much knowledge of different programming languages and also about the MD5. ...
8
votes
5answers
2k views

Converting a md5 hash byte array to a string

How can I convert the hashed result, which a byte array, to a string? byte[] bytePassword = Encoding.UTF8.GetBytes(password); using (MD5 md5 = MD5.Create()) { ...
8
votes
5answers
969 views

Combining MD5 hash values

When calculating a single MD5 checksum on a large file, what technique is generally used to combine the various MD5 values into a single value? Do you just add them together? I'm not really ...
8
votes
5answers
1k views

Possible to calculate MD5 (or other) hash with buffered reads?

I need to calculate checksums of quite large files (gigabytes). This can be accomplished using the following method: private byte[] calcHash(string file) { ...
8
votes
5answers
4k views

What's faster/better to use MYSQL md5 FUNCTION or run md5 php function?

I check password of users against the DB. what is faster, check it in Mysql MD5 function ... pwd = MD5('.$pwd.') OR in PHP MD5 function ... pwd = '.md5($pwd).' or what is The Right Way Between ...
8
votes
2answers
3k views

How do I assess the hash collision probability?

I'm developing a back-end application for a search system. The search system copies files to a temporary directory and gives them random names. Then it passes the temporary files' names to my ...
7
votes
5answers
350 views

It`s possible to break a sha1(md5('password')) password?

This is the question: It`s possible to break a sha1(md5('password')) password ? Or how it`s better md5 in sha1 or sha1 in md5 ? Thanks!
7
votes
5answers
591 views

md5 decoding. How they do it?

i thought, that it is impossible to decode md5 hashes, but i found tools, which decode them here. but i have no idea, how they do it in such a short period of time(it takes about a second). Help me ...
7
votes
4answers
411 views

Is the result of a md5 hash consistant or server dependent?

I am doing a md5 hash, and just want to make sure the result of: md5.ComputeHash(bytePassword); Is consistent regardless of the server? e.g. windows 2003/2008 and 32/64 bit etc.
7
votes
5answers
6k views

Getting Oracle's MD5 to match PHP's MD5

I'm trying to compare an MD5 checksum generated by PHP to one generated by Oracle 10g. However it seems I'm comparing apples to oranges. Here's what I did to test the comparison: //md5 tests ...
7
votes
3answers
1k views

Are the first 32 bits of an md5 hash just as “random” as any other substring?

I'm looking to create a 32-bit hash of some data objects. Since I don't feel like writing my own hash function and md5 is available, my current approach is to use the first 32 bits (i.e. first 8 hex ...
7
votes
1answer
4k views

Storing MD5 Hash in SQL Server

In Sql Server would a varbinary(16) be the most efficient way of storing an MD5 hash? Won't be doing anything with it except returning it in a linq query.
6
votes
3answers
113 views

Recursive MD5 and probability of collision

I wonder if it is 'safe' to hash a bunch of MD5 hash values together to create a new hash or whether this will in any way increase the probability of collisions. The background: I have a couple of ...
6
votes
5answers
177 views

Securely hash passwords - so much conflicting advice!

I'm reading so much conflicting advice as to how to store passwords securely. All I know for sure is not to use MD5! I've seen people advocate using PHP's bcrypt function, which seems like it'd hog ...

1 2 3 4 5 18