vote up 1 vote down star

I am taking the MD5 hash of an image file and I want to use the hash as a filename.

How do I convert the hash to a string that is valid filename?

EDIT: toString() just gives "System.Byte[]"

flag

47% accept rate
You want to get the hash as hex not binary... I don't do c# though so I don't know how – Greg Apr 17 at 12:11
Just as a heads up, you might want to use SHAx since MD5 is being phased out. – Spencer Ruport Apr 17 at 12:32
1  
The only reason to discontinue using MD5 is because of the cryptographic attacks against it recently (same with SHA-0/1). If you're not using it for cryptographic reasons, there's no big hurry to change over. – Jonathan Apr 17 at 12:45
1  
For simple hashing without security considerations MD5 should still be enough. – Johannes Rössel Apr 17 at 12:45

4 Answers

vote up 6 vote down

System.Convert.ToBase64String

As a commenter pointed out -- normal base 64 encoding can contain a '/' character, which obivously will be a problem with filenames. However, there are other characters that are usable, such as an underscore - just replace all the '/' with an underscore.

string filename = Convert.ToBase64String(md5HashBytes).Replace("/","_");
link|flag
I am gettig an error using that and if try with say test.jpg it works?? – Malcolm Apr 17 at 12:24
Looking at it there is "/" in the string and error is cannot find part pf path?? – Malcolm Apr 17 at 12:27
Either remove all "/" characters or use the approach I suggest in my answer. – sharptooth Apr 17 at 12:35
You will need to convert all the / and + characters to, say, _ and - characters instead. – Chris Jester-Young Apr 17 at 12:36
"+" characters are not prohibited, no need to remove them. – sharptooth Apr 17 at 12:38
show 1 more comment
vote up 9 vote down

How about this:

string filename = BitConverter.ToString(yourMD5ByteArray);

If you prefer a shorter filename without hyphens then you can just use:

string filename =
    BitConverter.ToString(yourMD5ByteArray).Replace("-", string.Empty);
link|flag
Ok, didn't know about this class, and it does the trick – Johan Buret Apr 17 at 12:43
Note this uses hexadecimal encoding. – meandmycode Apr 17 at 13:04
vote up 0 vote down

Technically using Base64 is bad if this is Windows, filenames are case insensitive (at least in explorers view).. but in base64, 'a' is different to 'A', this means that perhaps unlikely but you end up with even higher rate of collision..

A better alternative is hexadecimal like the bitconverter class, or if you can- use base32 encoding (which after removing the padding from both base64 and base32, and in the case of 128bit, will give you similar length filenames).

link|flag
vote up 1 vote down

Try this:

Guid guid = new Guid(md5HashBytes);
string hashString = guid.ToString("N"); 
// format: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

string hashString = guid.ToString("D"); 
// format: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx

string hashString = guid.ToString("B"); 
// format: {xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}

string hashString = guid.ToString("P"); 
// format: (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.