Linked Questions

59 votes
9 answers
12k views

I'm looking at some code that I have not written myself. The code tries to hash a password with SHA512 and uses just time() as the salt. Is time() too simple a salt for this or is this code safe? ...
zmol's user avatar
  • 2,924
45 votes
9 answers
70k views

I looked up msdn and other resources on how to do this but i came up with no clear solutions. This is the best i found http://blogs.msdn.com/b/shawnfa/archive/2004/04/14/generating-a-key-from-a-...
user avatar
21 votes
5 answers
3k views

I'm starting a website and I'm trying to decide how to encrypt user passwords to store them in a SQL database. I realize that using a simple md5(password) is very unsecured. I'm considering using a ...
Tchoupi's user avatar
  • 14.7k
29 votes
3 answers
26k views

I have been reading about bcrypt (application perspective). Thinking of using it to store passwords on my site. Out of some stuff that I read it suggests either ways: e.g. 1: Bcrypt is a cross ...
ThinkingMonkey's user avatar
9 votes
3 answers
30k views

I would be using MD5 hashing to store encrypted passwords. Password can be 6 to 40 characters long. What is the database column size required for storing the encrypted password. Also, if 40 characters ...
Jatin's user avatar
  • 4,073
5 votes
4 answers
18k views

I need to Encrypt the URLs in my ASP.NET MVC application. Do I need to write the code in Global page in Route Collection to Encrypt all the URLs?
kumar's user avatar
  • 2,944
7 votes
4 answers
1k views

Does using multiple algorithms make passwords more secure? (Or less?) Just to be clear, I'm NOT talking about doing anything like this: key = Hash(Hash(salt + password)) I'm talking about using two ...
Paul's user avatar
  • 6,238
2 votes
2 answers
6k views

I am new-ish to encryption, and have seen many different libraries, however many of them were created many years ago, I am just wondering what people use today to encrypt in python and something that ...
Josh Mc's user avatar
  • 10.3k
1 vote
2 answers
8k views

I would like to hash passwords using PBKDF2 with a pepper and a salt in C#. I am a bit new to Cryptography, so feel free to correct me if I am wrong. I use the Rfc2898DeriveBytes Class because (...
user avatar
-4 votes
2 answers
775 views

I am developing an API project which will have users who will be registering and logging in and out of an mobile application. I will be developing this application using web API .net core 5. I want to ...
user19329953's user avatar
2 votes
1 answer
478 views

I am looking to use ServiceStack for an upcoming project, but I want to use bcrypt for hashing passwords. Currently the builtin repositories use SHA256 hashing. Is there any way for me to leverage ...
Blake B's user avatar
  • 138
1 vote
1 answer
433 views

For some reason, I have to store the username and password under web.config. I used to store like the following: <authentication mode="Forms"> <forms name=".ASPNETAUTH" > <...
Goldfish's user avatar