I'm working a custom membership system in ASP.NET MVC3 (explained here). And I want to use BCrypt. My question is about BCrypt.net arguments range. i.e. the minimum and maximum length of string that BCrypt can hash it, that min/max lenght of salt, and also the output string's lenght. Really I'm creating database now, and I want to know how to set password column in db. i.e. nvarchar(256) or anything else? Thanks in advanced.

link|improve this question

68% accept rate
feedback

1 Answer

up vote 2 down vote accepted

The BCrypt algorithm incorporates the salt into the hash so you don't need to have 2 separate columns in your database to store the hash and the password. You may checkout this sample implementation. It produces hashes of length 60 no matter how long the plain text password is.

link|improve this answer
Thanks dear @Darin :) you're a Rescue Angelv :D – king.net Feb 18 at 21:59
feedback

Your Answer

 
or
required, but never shown

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