Click here to Skip to main content
15,898,995 members

Comments by polkj (Top 22 by date)

polkj 27-Jul-14 0:49am View    
the port is from my sansung mobile phone, I plug in my usb
polkj 20-Jul-14 23:54pm View    
byte[] hashByte = Encoding.UTF8.GetBytes(tb_password.Text);
SHA512Managed sha512 = new SHA512Managed();
byte[] hash = sha512.ComputeHash(hashByte);

string saltwithhash = Convert.ToBase64String(hash);
Can I use this method to hash?
polkj 20-Jul-14 11:52am View    
any sample codes?
polkj 20-Jul-14 8:57am View    
But now my hash is with the salt, how do I compare passwords?
polkj 17-Jul-14 5:30am View    
Really, but the salt value is not inside