Cryptography is the practice and study of logical means used to achieve information confidentiality, integrity and authenticity. It covers, among other things, encryption (making some data unreadable except for those who know a given secret element, called a key), data hashing (in particular for password storage) and digital signatures (provable integrity and authenticity with non-repudiation).
146
votes
10answers
4k views
How are Software License Keys generated?
CD Keys are the defacto-standard as an anti-piracy measure. To be honest this strikes me as Security Though Obscurity, although I really have no idea how CD Keys are generated. What is a good ...
78
votes
5answers
16k views
How do you use bcrypt for hashing passwords in PHP?
Every now and then I hear the advice "Use bcrypt for storing passwords in PHP, bcrypt rulllez!!!11"
OK, but what is this bcrypt? PHP doesn't offer any such functions, wikipedia babbles about a ...
73
votes
9answers
11k views
How does password salt help against a rainbow table attack?
I'm having some trouble understanding the purpose of a salt to a password. It's my understanding that the primary use is to hamper a rainbow table attack. However, the methods I've seen to implement ...
52
votes
1answer
1k views
Blackberry smartcard reader example
I am writing an app for BlackBerry that utilizes a BlackBerry smartcard reader. There is not much documentation on the subject, so I'd really like if someone could give me starting examples.
...
49
votes
7answers
12k views
Salting Your Password: Best Practices?
I've always been curious... Which is better when salting a password for hashing: prefix, or postfix? Why? Or does it matter, so long as you salt?
To explain: We all (hopefully) know by now that we ...
43
votes
20answers
2k views
What is the most secure seed for random number generation?
What are the most secure sources of entropy to seed a random number generator? This question is language and platform independent and applies to any machine on a network. Ideally I'm looking for ...
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 ...
37
votes
3answers
5k views
Where do you store your salt strings?
I've always used a proper per-entry salt string when hashing passwords for database storage. For my needs, storing the salt in the DB next to the hashed password has always worked fine.
However, ...
35
votes
12answers
4k views
Why are primes important in cryptography?
One thing that always strikes me as a non-cryptographer: Why is it so important to use Prime numbers? What makes them so special in cryptography?
Does anyone have a simple short explanation? (I am ...
31
votes
9answers
8k views
Non-random salt for password hashes
UPDATE: I recently learned from this question that in the entire discussion below, I (and I am sure others did too) was a bit confused: What I keep calling a rainbow table, is in fact called a hash ...
26
votes
4answers
932 views
Is bitcoin protocol future-proof?
Bitcoin makes an intensive use of cryptography to do everything: coin mining, authenticating transactions, etc.
I wonder if it is built future-proof, i.e. which will allow stronger algorithms to be ...
26
votes
1answer
3k views
Importing a DSA key from xml string fails for one user. Permissions? Broken installation? Bad KSP?
A user recently reported a weird error when using my software. I use DSA signatures to verify licenses. When the software imports the public key to verify a signature, the DSA provider's FromXmlString ...
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 ...
24
votes
5answers
3k views
Is SHA-1 secure for password storage?
Conclusion: SHA-1 is as safe as anything against preimage attacks, however it is easy to compute, which means it is easier to mount a bruteforce or dictionary attack. (The same is true for successors ...
22
votes
5answers
1k views
Many hash iterations: append salt every time?
I have used unsalted md5/sha1 for long time, but as this method isn't really secure (and is getting even less secure as time goes by) I decided to switch to a salted sha512. Furthermore I want to slow ...
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
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 ...
20
votes
10answers
2k views
How would you keep secret data secret in an iPhone application?
Let's say I need to access a web service from an iPhone app. This web service requires clients to digitally sign HTTP requests in order to prove that the app "knows" a shared secret; a client key. ...
18
votes
7answers
455 views
How are cryptographic hash functions designed?
After reading about why one-way hash functions are one-way, I would like to know how to design a hash function. Yes, I know that it's a bad idea to not use a proven and tested hash function, but I ...
18
votes
7answers
3k views
What exactly is a rainbow attack?
I was reading a few articles on salts and password hashes and a few people were mentioning rainbow attacks. What exactly is a rainbow attack and what are the best methods to prevent it?
17
votes
4answers
600 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
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:
...
17
votes
5answers
5k views
How do you verify an RSA SHA1 signature in Python?
I've got a string, a signature, and a public key, and I want to verify the signature on the string. The key looks like this:
-----BEGIN PUBLIC KEY-----
...
16
votes
5answers
22k views
Using SHA1 and RSA with java.security.Signature vs. MessageDigest and Cipher
I'm trying to understand what the Java java.security.Signature class does. If I compute an SHA1 message digest, and then encrypt that digest using RSA, I get a different result to asking the Signature ...
16
votes
11answers
2k views
Are there public key cryptography algorithms that are provably NP-hard to defeat?
Should practical quantum computing become a reality, I am wondering if there are any public key cryptographic algorithms that are based on NP-complete problems, rather than integer factorization or ...
15
votes
6answers
237 views
Cryptography for P2P card game
I'm considering writing a computer adaptation of a semi-popular card game. I'd like to make it function without a central server, and I'm trying to come up with a scheme that will make cheating ...
15
votes
9answers
2k views
Login without HTTPS, how to secure?
For a webapplication, when HTTPS is not available as a security measure, is it possible to still make the login somewhat secure? E.g.:
Tokenize logins, to make repeat attacks difficult?
Somehow ...
15
votes
9answers
5k views
Can two different strings generate the same MD5 hash code?
For each of our binary assets we generate a MD5 hash. This is used to check whether a certain binary asset is already in our application. But is it possible that two different binary assets generate ...
15
votes
2answers
2k views
How to properly do private key management
Has anyone got practical experience or a reference for a scheme that implements a key management scheme that would comply with the PCI DSS security standard?
There are obviously quite a few ...
15
votes
6answers
1k views
How to store passwords *correctly*?
An article that I stumbled upon here in SO provided links to other articles which in turn provided links to even more articles etc.
And in the end I was left completely stumped - so what is the best ...
15
votes
19answers
2k views
What techniques do you use when writing your own cryptography methods?
For years, maybe 10, I've been fascinated with cryptography. I read a book about XOR bit-based encryption, and have been hooked ever since thing.
I guess it's more fair to say that I'm fascinated by ...
14
votes
3answers
247 views
Where does the limitation of 10^15 in D.J. Bernstein's 'primegen' program come from?
At http://cr.yp.to/primegen.html you can find sources of program that uses Atkin's sieve to generate primes. As the author says that it may take few months to answer an e-mail sent to him (I ...
14
votes
5answers
377 views
If attacker has original data and encrypted data, can they determine the passphrase?
If an attacker has several distinct items (for example: e-mail addresses) and knows the encrypted value of each item, can the attacker more easily determine the secret passphrase used to encrypt those ...
14
votes
6answers
368 views
Is it worth using https if you are not doing financial transactions?
Hey just a quick question for any experts out there. I have a site that lets users interact through messages and to sign up you just make a username and password, verify your age, and optionally, add ...
14
votes
5answers
1k views
Is it safe to store passwords hashed with MD5CryptoServiceProvider in C#?
We are storing hashed passwords in a database table.
We prepend each password with a random salt value and hash using MD5CryptoServiceProvider.
Is this safe? I have heard MD5 was "broken".
If not, ...
14
votes
5answers
9k views
how to use RSA to encrypt files (huge data) in C#
I'm new to encryption. I need to implement asymmetric encryption algorithm, which i think it uses private/public key. I started using a sample of RSACryptoServiceProvider. it was ok with small data to ...
14
votes
6answers
2k views
Given a private key, is it possible to derive its public key?
From whatever little I understand by reading various material, public-private key pair are the basis of assymetric encryption and also something about choosing 2 prime numbers (which is roughly your ...
14
votes
9answers
4k views
An effective method for encrypting a license file?
For a web application, I would like to create a simple but effective licensing system. In C#, this is a little difficult, since my decryption method could be viewed by anyone with Reflector installed.
...
14
votes
8answers
1k views
What is the difference between a randomly generated number and secure randomly generated number?
As the title says What is the difference between a randomly generated number and secure randomly generated number?
13
votes
8answers
521 views
Which attacks are possible concerning my security layer concept?
Despite all the advices to use SSL/https/etc. I decided to implement my own security layer on top of http for my application... The concept works as follows:
User registers -> a new RSA Keypair is ...
13
votes
2answers
1k views
Why is using a Non-Random IV with CBC Mode a vulnerability?
I understand the purpose of an IV. Specifically in CBC mode this insures that the first block of of 2 messages encrypted with the same key will never be identical. But why is it a vulnerability if ...
13
votes
5answers
979 views
How can I generate a unique, small, random, and user-friendly key?
A few months back I was tasked with implementing a unique and random code for our web application. The code would have to be user friendly and as small as possible, but still be essentially random ...
12
votes
4answers
181 views
Password strength check: comparing to previous passwords
Every now and then I come across applications that force you to change passwords once in a while. Almost universally, they have this strange requirement for the new password: it has to be ...
12
votes
10answers
12k views
Is it possible to decrypt md5 hashes?
Someone told me that he has seen software systems that would accept MD5 encrypted passwords (through various integrations with other systems), decrypt them, and store them in the systems own database ...
12
votes
4answers
10k views
generate sha hash in openssl
how do i generate sha-1, sha-2 using openssl libarary, searched google and could not find function or any example code
12
votes
5answers
2k views
How to implement password protection for individual files?
I'm writing a little desktop app that should be able to encrypt a data file and protect it with a password (i.e. one must enter the correct password to decrypt). I want the encrypted data file to be ...
11
votes
4answers
508 views
Where is the PEM file format specified?
I need to parse .PEM files.
I know that the standard for "Privacy-enhanced Electronic Mail" is defined in RFCs 1421-24. But they don't seem to mention some text I find inside OpenSSL .pem files (eg. ...
11
votes
1answer
597 views
.NET implementation of scrypt
I've read about scrypt and some of it's advantages over the bcrypt hashing algorithm in certain circumstances.
Anyhow, it seems scrypt isn't as widely used yet. Has anyone seen so far a .NET ...
11
votes
1answer
439 views
Deterministically Generating cryptographically secure keys and IVEC's
Background
I am designing a system which enables the development of dynamic authentication schemes for a user of static web content. The motivation is to pre-generate large amounts of ...