Convert HashBytes to VarChar - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T11:35:14Z http://stackoverflow.com/feeds/question/2120 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/2120/convert-hashbytes-to-varchar 2 Convert HashBytes to VarChar GateKiller 2008-08-05T11:49:11Z 2008-08-05T14:27:24Z <p>I want to get the MD5 Hash of a string value in SQL Server 2005, I do this with the following command:</p> <pre><code>SELECT HashBytes('MD5', 'HelloWorld')<br></code></pre> <p>However, this returns a VarBinary instead of a VarChar value. If I attempt to convert "0x68E109F0F40CA72A15E05CC22786F8E6" into a VarChar I get "há ðô§*à\Â'†øæ" instead of "68E109F0F40CA72A15E05CC22786F8E6".</p> <p>Is there any SQL based solution?</p> <p><strong><a href="http://beta.stackoverflow.com/questions/2120/#2382" rel="nofollow">Yes</a></strong></p> http://stackoverflow.com/questions/2120/convert-hashbytes-to-varchar/2122#2122 0 Answer by Michael Stum for Convert HashBytes to VarChar Michael Stum 2008-08-05T11:50:58Z 2008-08-05T11:50:58Z <p>You may want to try to get rid of the 0x using <a href="http://msdn.microsoft.com/en-us/library/aa259342%28SQL.80%29.aspx" rel="nofollow">SUBSTRING</a> or similar.-</p> http://stackoverflow.com/questions/2120/convert-hashbytes-to-varchar/2129#2129 0 Answer by GateKiller for Convert HashBytes to VarChar GateKiller 2008-08-05T11:56:41Z 2008-08-05T11:56:41Z <p>Michael,</p> <p>I have tried this, but the substring function converts the varbinary into a varchar datatype and in doing so, return rubbish instead of the MD5 hash :(</p> <p>The simplest solution would be to store the output value into a column of varbinary datatype, however, I cannot edit the database I have to work with.</p> <p>Ste.</p> http://stackoverflow.com/questions/2120/convert-hashbytes-to-varchar/2194#2194 0 Answer by jdecuyper for Convert HashBytes to VarChar jdecuyper 2008-08-05T12:40:03Z 2008-08-05T12:40:03Z <p>You cannot recover a MD5 hashed password. You can only use its value to compare it and see if there is a match: </p> <p>DECLARE @password VARBINARY(150)<br> SET @password = HashBytes('MD5', 'mypassword')<br> SELECT @password<br><br> IF (HashBytes('MD5', 'mypassword') = @password)<br> SELECT 'Match!'<br> IF (HashBytes('MD5', 'myspecialpassword') = @password)<br> SELECT 'Match!'<br></p> <p>I would highly recommend you to <a href="http://www.codinghorror.com/blog/archives/000949.html" rel="nofollow">salt</a> all your password since the MD5 is vulnerable to any force brute attack.</p> http://stackoverflow.com/questions/2120/convert-hashbytes-to-varchar/2203#2203 0 Answer by GateKiller for Convert HashBytes to VarChar GateKiller 2008-08-05T12:45:24Z 2008-08-05T12:45:24Z <p>jdecuyper,</p> <p>The situation is that I have to create user account, via sql, for a system that we cannot change (3rd party). The password are (unfortunatly) stored as a simple MD5 hashed string of datatype varchar.</p> <p>My original question wasn't about recovering MD5 hashed passwords, this know, but I want to know how to convert and varbinary into a varchar and still keep the viable hash instead of gibberish.</p> http://stackoverflow.com/questions/2120/convert-hashbytes-to-varchar/2382#2382 13 Answer by GateKiller for Convert HashBytes to VarChar GateKiller 2008-08-05T14:26:41Z 2008-08-05T14:26:41Z <p>I have found the solution else where:</p> <pre><code>SELECT SUBSTRING(master.dbo.fn_varbintohexstr(HashBytes('MD5', 'HelloWorld')), 3, 32) <br></code></pre>