Convert HashBytes to VarChar - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T11:35:14Zhttp://stackoverflow.com/feeds/question/2120http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/2120/convert-hashbytes-to-varchar2Convert HashBytes to VarCharGateKiller2008-08-05T11:49:11Z2008-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#21220Answer by Michael Stum for Convert HashBytes to VarCharMichael Stum2008-08-05T11:50:58Z2008-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#21290Answer by GateKiller for Convert HashBytes to VarCharGateKiller2008-08-05T11:56:41Z2008-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#21940Answer by jdecuyper for Convert HashBytes to VarCharjdecuyper2008-08-05T12:40:03Z2008-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#22030Answer by GateKiller for Convert HashBytes to VarCharGateKiller2008-08-05T12:45:24Z2008-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#238213Answer by GateKiller for Convert HashBytes to VarCharGateKiller2008-08-05T14:26:41Z2008-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>