Encryption is the process of transforming information (referred to as plaintext) using an algorithm (called cipher) to make it unreadable to anyone except those possessing special knowledge, usually referred to as a key. A tip: conceptual questions about encryption might get more attention and better answers on http://crypto.stackexchange.com/.
86
votes
15answers
32k 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 stronger than ROT13 or ...
55
votes
9answers
5k 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 programmatically scheduled for ...
53
votes
7answers
43k views
Best way to use PHP to encrypt and decrypt?
I plan to store foreign account information for my users on my website, aka rapidshare username and passwords, etc... I want to keep information secure, but i know that if i md5 their information, i ...
53
votes
10answers
3k 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 the .NET encryption ...
47
votes
8answers
3k views
PHP 2-way encryption: I need to store passwords that can be retrieved
I am creating an application that will store passwords, which the user can retrieve and see. The passwords are for a hardware device, so checking against hashes are out of the question.
What I need ...
41
votes
5answers
71k views
Java 256bit AES Encryption
I need to implement 256 bit AES encryption, but all the examples I have found online use a "KeyGenerator" to generate a 256 bit key, but I would like to use my own passkey. How can I create my own ...
39
votes
10answers
2k views
Somebody is storing credit card data - how are they doing it?
Storing credit card information securely and legally is very difficult and should not be attempted. I have no intention of storing credit card data but I'm dying to figure out the following:
My ...
39
votes
11answers
1k 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 encryption methods. I only ...
39
votes
1answer
5k views
Do I need to store the salt with bcrypt?
bCrypt's javadoc has this code for how to encrypt a password:
String pw_hash = BCrypt.hashpw(plain_password, BCrypt.gensalt());
To check whether a plaintext password matches one that has been ...
37
votes
6answers
8k views
Does my application “contain encryption”?
I'm uploading a binary for the first time. iTunes Connect has asked me:
Export laws require that products containing encryption be properly authorized for export.
Failure to comply could result ...
37
votes
7answers
4k 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 for each user but is ...
36
votes
22answers
2k views
Code Golf: XOR Encryption
From: Encryption Co.
To: x$*sj4 (that's you)
Your mission, should you choose to accept it, is to create a program in the shortest number of keystrokes that
Takes two filenames parameters (either ...
36
votes
6answers
11k views
SHA512 vs. Blowfish and Bcrypt
I'm looking at hashing algorithms, but couldn't find an answer.
Bcrypt uses Blowfish
Blowfish is better than MD5
Q: but is Blowfish better than SHA512?
Thanks..
Update:
I want to clarify that ...
33
votes
10answers
6k 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 calls to order a ...
33
votes
6answers
9k 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 much of HTTPS headers ...
32
votes
5answers
10k views
How can I store my users' passwords safely?
How much more safe is this than plain MD5? I've just started looking into password security. I'm pretty new to PHP.
$salt = 'csdnfgksdgojnmfnb';
$password = md5($salt.$_POST['password']);
$result = ...
31
votes
11answers
86k views
Encrypt/Decrypt string in .NET
Can someone give me the code to Encrypt and Decrypt a string in C#? I'm trying to do this with TripleDES but that is not a requirement.
30
votes
5answers
5k views
What is the optimal length for user password salt?
Any salt at all will obviously help when salting and hashing a user's password. Are there any best practices for how long the salt should be? I'll be storing the salt in my user table, so I would ...
29
votes
16answers
14k 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™.
Knowing that I'll have to ...
28
votes
4answers
20k views
How to choose an AES encryption mode (CBC ECB CTR OCB CFB)?
Which of them are preferred in which circumstances?
I'd like to see the list of evaluation crtieria for the various modes, and maybe a discussion of the applicability of each criterion.
For ...
28
votes
12answers
37k views
C# What is the easiest way to encrypt a password when I save it to the registry?
Currently I'm writing it in clear text oops!, it's an in house program so it's not that bad but I'd like to do it right. How should I go about encrypting this when writing to the registry and how do I ...
27
votes
13answers
2k views
How can it be impossible to “decrypt” an MD5 hash?
I was reading a question about MD5, and it made me remember something that boggles me. Very simple question, and I'm sorry if it's not a good one. I just can't understand how you convert something to ...
26
votes
2answers
1k views
Is HTTPS the only defense against Session Hijacking in an open network?
So with Firesheep, everyone in a public Wi-Fi now has a one-click session hijack tool.
The way it works - to my understanding - is that it simply captures all traffic and grabs the session cookie (so ...
26
votes
14answers
2k 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.
Is it just me, or ...
25
votes
16answers
1k views
How to Check Authenticity of an AJAX Request
I am designing a web site in which users solve puzzles as quickly as they can. JavaScript is used to time each puzzle, and the number of milliseconds is sent to the server via AJAX when the puzzle is ...
25
votes
2answers
20k views
AES Encryption for an NSString on the iPhone
Can anybody point me in the right direction to be able to encrypt a string, returning another string with the encrypted data? (I've been trying with AES256 encryption.) I want to write a method which ...
24
votes
3answers
10k views
24
votes
14answers
8k views
Should I impose a maximum length on passwords?
I can understand that imposing a minimum length on passwords makes a lot of sense (to save users from themselves), but my bank has a requirement that passwords are between 6 and 8 characters long, and ...
23
votes
14answers
6k views
How come MD5 hash values are not reversible?
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 unique and virtually impossible to ...
23
votes
12answers
22k views
Write a password protected Zip file in Java
I need to zip and password-protect a file. Is there a good (free) library for this?
This needs to be opened by a third party, so the password protection needs to work with standard tools.
22
votes
4answers
532 views
How is SecureString “encrypted” and still usable?
According to MSDN SecureString contents is encrypted for additional safety so that if the program is swapped to disk the string contents can't be sniffed.
How is such encryption possible I wonder? ...
22
votes
8answers
4k 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 difference between ...
21
votes
6answers
3k views
Fundamental difference between Hashing and Encryption algorithms
I see a lot of confusion between hashes and encryption algorithms and have a general idea of when to use one over the other.
However, I would like to hear some more expert opinions about:
When to ...
21
votes
6answers
2k views
How does a cryptographically secure random number generator work?
I understand how standard random number generators work. But when working with crytpography, the random numbers really have to be random.
I know there are instruments that read cosmic white noise to ...
21
votes
9answers
2k 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 of encoding x into ...
20
votes
2answers
11k views
SVN encrypted password store
I installed SVN on a Ubuntu machine and I can't get my head around something.
Whenever I checkout something from the terminal I get this error about saving a non-encrypted password:
...
20
votes
6answers
917 views
What is the best nuclear missile crypto system?
You are on a submarine and there is an encrypted message that you want to read. Two people must use their keys at the same time in order to obtain the plain text. What is best cryptographic primitive ...
19
votes
8answers
14k views
19
votes
2answers
31k views
How do I use 3des encryption/decryption in Java?
Every method I write to encode a string in Java using 3DES can't be decrypted back to the original string. Does anyone have a simple code snippet that can just encode and then decode the string back ...
18
votes
2answers
526 views
asp.net viewstate encryption issue
I am attempting to turn on viewstate encryption Always as a security measure for my ASP.NET 3.5 website hosted in IIS6. We have viewstate turned off but still see some "controlstate" in this string. ...
18
votes
3answers
6k views
Using SSL in an iPhone App - Export Compliance
I'm looking at creating an iPhone app that will communicate with a REST Web service. Because some user-sensitive data (name, address, age, etc) will be transmitted, I'm looking at securing the ...
17
votes
13answers
2k views
Is there an encrypted version control system?
I am looking for an encrypted version control system . Basically I would like to
Have all files encrypted locally before sending to the server. The server should never receive any file or data ...
17
votes
7answers
2k views
What is currently the most secure one-way encryption algorithm?
As many will know, one-way encryption is a handy way to encrypt user passwords in databases. That way, even the administrator of the database cannot know a user's password, but will have to take a ...
17
votes
4answers
599 views
How does being able to factor large numbers determine the security of popular encryption algorithms?
How is the an encryption algorithm's security dependent on factoring large numbers?
For example, I've read on some math-programming forums that by using the Quadratic Sieve or the General Number ...
17
votes
1answer
2k views
Best practices around generating OAuth tokens?
I realize that the OAuth spec doesn't specify anything about the origin of the ConsumerKey, ConsumerSecret, AccessToken, RequestToken, TokenSecret, or Verifier code, but I'm curious if there are any ...
17
votes
7answers
11k views
Encrypt Password in Configuration Files? (Java)
I have a program that reads server information from a configuration file and would like to encrypt the password in that configuration that can be read by my program and decrypted.
Requirments:
...
16
votes
4answers
422 views
What are best practices for using AES encryption in Android?
Why I ask this question:
I know there have been a lot of questions about AES encryption, even for Android. And there are lots of code snippets if you search the Web. But on every single page, in ...
16
votes
6answers
2k views
Why Base64 encryption?
I don't get the Base64 encryption.
If one can decrypt a Base64 string, what is it's purpose?
Why is it being used for HTTP Basic auth?
It's like telling to someone my password is reversed into ...
16
votes
2answers
4k views
git encrypt/decrypt remote repository files while push/pull
Is it possible to automatically encrypt files via 'git push' before transferring to a remote repository? And automatically decode them while 'git pull'.
I.e, if I have some remote server with shared ...
16
votes
5answers
1k views
Should all sites use SSL by default
We are in the process of moving our web architecture to a new environment. Included are dozens of different sites ranging from almost completely static to dynamic sites requiring authentication and ...