24
votes
9answers
1k views
Preferred Method of Storing Passwords In Database
What is your preferred method/datatype for storing passwords in a database (preferably SQL Server 2005). The way I have been doing it in several of our applications is to first use …
23
votes
11answers
630 views
What should every web developer know about encryption?
I've just landed a PHP5 gig. I won't be handling the parts of the application that involve super sensitive data, but I still know embarrassingly little about security and encryptio …
21
votes
8answers
746 views
Practical applications of homomorphic encryption algorithms?
It appears there there were interesting things going on in cryptography: the first homomorphic encryption scheme appeared recently (explanation, HT). Roughly speaking, it is a way …
20
votes
15answers
1k views
Why is security through obscurity a bad idea?
I recently came across a system where all of the DB connections were managed by routines obscured in various ways, including base 64 encoding, md5sums and various other techniques. …
20
votes
9answers
1k views
When would I need a SecureString in .NET?
I'm trying to grok the purpose of .NET's SecureString. From MSDN:
An instance of the System.String class is both immutable and, when no longer needed, cannot be programmatical …
19
votes
10answers
2k views
Storing credit card details
I have a business requirement that forces me to store a customer's full credit card details (number, name, expiry date, CVV2) for a short period of time.
Rationale: If a customer …
18
votes
7answers
1k views
The necessity of hiding the salt for a hash
At work we have two competing theories for salts. The products I work on use something like a user name or phone number to salt the hash. Essentially something that is different …
17
votes
16answers
4k views
Encrypting/Hashing plain text passwords in database
I've inherited a web app that I've just discovered stores over 300,000 usernames/passwords in plain text in a SQL Server database. I realize that this is a Very Bad Thing™.
Knowi …
15
votes
6answers
980 views
Difference between Hashing a Password and Encrypting it
The current top-voted to this question states:
Another one that's not so much a security issue, although it is security-related, is complete and abject failure to grok the diff …
14
votes
13answers
2k views
How come MD5 hash values are not reversible?
Hey everyone,
One concept I've always wondered about is the use of cryptographic hash functions and values. I understand that these functions can generate a hash value that is uni …
14
votes
11answers
5k views
Simple 2 way encryption for C#
I'm looking for very simple encrypt and decrypt functionality for some data. It's not mission critical. I need something to keep honest people honest, but something a little stro …
12
votes
10answers
703 views
Why should I care about hashing passwords anyway?
If a hacker has access to the hashes in my DB, he has access to the rest of the information in the DB anyways. So why would he bother trying to decrypt the passwords? Should I be s …
12
votes
6answers
1k views
Are HTTPS headers encrypted?
When sending data over HTTPS, I know the content is encrypted, however I hear mixed answers about whether the headers are encrypted, or how much of the header is encrypted.
How mu …
11
votes
8answers
165 views
Algorithm to decrypt data with drawn strokes
Let's say I have an encrypted file on an iPhone and every time I want to decrypt it, I want to "draw" a decryption symbol instead of having to use a keyboard to type it in.
If you …
11
votes
5answers
201 views
Signup or Invitation Email Verification w/o Database
I'd like to keep my database clean of stale almost-accounts, and I was thinking about making new signups and invitations put their data into the welcome email as an encrypted or ha …
