28
votes
12answers
1k 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 …
22
votes
10answers
1k views
Need some help understanding password salt
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 …
21
votes
8answers
789 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 …
18
votes
8answers
2k 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 …
13
votes
8answers
2k views
Non-random salt for password hashes
Typically, I always recommend using a cryptographically-strong random value as salt, to be used with hash functions (e.g. for passwords), such as to protect against Rainbow Table attacks.
But is it …
12
votes
6answers
461 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?
12
votes
9answers
821 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. …
11
votes
19answers
908 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 …
10
votes
6answers
555 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 …
10
votes
8answers
753 views
Given a private key, is it possible to derive it’s 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 …
10
votes
5answers
1k 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-----
…
10
votes
5answers
569 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 …
9
votes
9answers
546 views
Why is XOR used on Cryptography?
Why is XOR only used in the cryptographic algorithms, and other logic gates like OR, AND and NOR are not used?
9
votes
13answers
569 views
Best way to prevent duplicate use of credit cards
We have a system where we want to prevent the same credit card number being registered for two different accounts. As we don't store the credit card number internally - just the last four digits and …
8
votes
7answers
515 views
Is it possible for MD5(x) == x? [closed]
Duplicate:
MD5 Fixed Point?
I was reading this post and it got me thinking. Is there a way for a string, when hashed with MD5, to return itself? I know this would take a bajillion years to …
