vote up 5 vote down star
5

My Win form app doesn't seem to like FormsAuthentication, I'm totally new to hashing so any help to convert this would be very welcome. Thanks.

//Write hash
protected TextBox tbPassword;
protected Literal liHashedPassword;

{
  string strHashedPassword = FormsAuthentication.HashPasswordForStoringInConfigFile(tbPassword.Text, "sha1");
  liHashedPassword.Text = "Hashed Password is: " + strHashedPassword;    
}

//read hash
string strUserInputtedHashedPassword = FormsAuthentication.HashPasswordForStoringInConfigFile( tbPassword.Text, "sha1");
if(strUserInputtedHashedPassword == GetUsersHashedPasswordUsingUserName(tbUserName.Text))
{
  // sign-in successful
}
else
{
  // sign-in failed
}
flag
Is the goal to have an app that allows users to specify different credentials than the logged in user? To obtain credentials for use in accessing other services? I'm not sure what you are trying to do. – tvanfosson Oct 17 '08 at 16:26

6 Answers

vote up 1 vote down

I think it should work. All you need to do is reference System.Web.Security in your code (and add it as a reference in your Visual Studio Project).

link|flag
vote up 2 vote down

The FormsAuthentication is defined in the System.Web.Security namespace which is in the System.Web.dll assembly.

Just because you are writing a WinForm app does not stop you from using that namespace or referencing that assembly; they are just not done by default as they would be for a WebForms app.

link|flag
vote up 2 vote down

Or you could roll your own hashing; GO GO SHA POWER!

This will return a nice, big, hex-encoded string for you - just make sure you import the System.Security.Cryptography namespace.

public static string ToSha256Hash(string s)
{
    if (String.IsNullOrEmpty(s)) return "";

    byte[] hash;
    // SHA256 returns a 32 byte hash..
    using (var sha = SHA256.Create())
    {
        hash = sha.ComputeHash(Encoding.UTF8.GetBytes(s));
    }

    var result = new StringBuilder(64);
    foreach (byte b in hash)
    {
        result.Append(b.ToString("x2"));
    }

    return result.ToString();
}

I personally don't like mixing the web and winforms worlds :)

link|flag
vote up 9 vote down
using System.Security.Cryptography;

public static string EncodePasswordToBase64(string password)
{  byte[] bytes   = Encoding.Unicode.GetBytes(password);
   byte[] inArray = HashAlgorithm.Create("SHA1").ComputeHash(bytes);
   return Convert.ToBase64String(inArray);
}
link|flag
Very clean - I tested our two implementations and yours is a bit faster.. 50ms faster on 100,000 iterations, so I'm upvoting it :) – Jarrod Dixon Oct 17 '08 at 18:40
vote up 1 vote down

If you actually have to 'ship' this forms app, maybe adding System.Web.Security is not such a good idea...

If you need an SHA1 hash, there is a very easy to use .net cryptography library with examples on msdn. The key is to

  1. take what you want to encrypt
  2. turn it into bytes for whichever encoding(ascii, utf*) you are using
  3. Use one of the many hashing schemes builtin to .Net to get the hashed bytes
  4. turn those bytes back into a string in the same encoding as in step 2
  5. Save the resulting hashed string somewhere for later comparison


//step 1 and 2
byte[] data = System.Text.Encoding.Unicode.GetBytes(tbPassword.Text,);
byte[] result; 

//step 3
SHA1 sha = new SHA1CryptoServiceProvider(); 
result = sha.ComputeHash(data);

//step 4
string storableHashResult = System.Text.Encoding.Unicode.ToString(result);

//step 5
    // add your code here
link|flag
Other than the obvious "it's not meant for WinForms apps", is there a reason why including System.Web.* is not such a good idea? – JasonS Oct 17 '08 at 16:39
1  
Reminds me of a post by Rick Strahl at west-wind.com/Weblog/posts/617930.aspx 1. It doesn't "feel" right. 2. It forces System.Web into the loaded assebly list of any application consuming the library. 3. It adds 2.5 megs to the memory footprint just for loading it. 4. etc. (out of room) – Ted Mar 3 at 23:23
vote up 1 vote down

Could you not use the BitConverter function instead of the "x2" loop?

e.g.

return BitConverter.ToString(hash).Replace("-", "");

link|flag

Your Answer

Get an OpenID
or

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