Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is a good way to convert a file path (URI) into a System.Guid? I'd like to minimize the possibility of a collision, but I'm happy with a reasonably unique hashing (probably never more than a few dozen/hundred items in the database)

share|improve this question

3 Answers

up vote 7 down vote accepted

There is no need. Hash URI with md5 or sha1 and that's all. GUIDs are not for hashing things. They meant to be created unique independently of everything else.

share|improve this answer
Appreciate the spanking, but I've got to retrofit these into a system which already depends on Guids. EDIT: ah, I see md5 creates a 128bit number, which equals a Guid. I can go from here I think. – David Rutten Jun 12 '10 at 20:34
1  
I am not sure, but I think there may be a collision with "natively generated" GUIDs this way if you generate a real lot of them – FractalizeR Jun 12 '10 at 20:45
hi, I am interested in knowing what program OR how you would convert the URI to md5 hash? is there a utility somewhere in VS? thanks! – VoodooChild Jun 12 '10 at 21:05
1  
@VoodooChild, have a look at System.Security.Cryptography.MD5CryptoServiceProvider – David Rutten Jun 12 '10 at 22:21
Look at the implementations of the v3 (MD5) and v5 (SHA-1) UUIDs in RFC 4122, ietf.org/rfc/rfc4122.txt uuid_create_md5_from_name and in Python, svn.python.org/view/python/trunk/Lib/uuid.py?view=markup – George V. Reilly Jun 15 '10 at 20:12
show 1 more comment

The "correct" way (according to RFC 4122 ยง4.3) is to create a name-based UUID. The advantage of doing this (over just using a MD5 hash) is that these are guaranteed not to collide with non-named-based UUIDs, and have a very (very) small possibility of collision with other name-based UUIDs.

There's no native support in the .NET Framework for creating these, but by using code similar to this, you could create a GUID as follows:

Guid guid = GuidUtility.Create(GuidUtility.UrlNamespace, filePath);

To reduce the risk of collisions with other GUIDs even further, you could create a private GUID to use as the namespace ID (instead of using the URL namespace ID defined in the RFC).

share|improve this answer

If you have the option of a centralized registry/database, you could maintain a GUID <-> URL resolver and generate a new GUID for each URL you need. This would use GUIDs the way they are intended, minimizing probability of collision with natively-generated GUIDs.

share|improve this answer
Michael, excellent suggestion. I'll keep this in mind in case I run into issues with the md5 encryption. – David Rutten Jun 13 '10 at 9:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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