vote up 0 vote down star

Out of curiosity, what is "the best cryptography algorithm" for you as a programmer, given both security and ease of implementation?

flag

11 Answers

vote up 8 vote down check

What are you doing with it? there is no "best" encryption algorithm: they all have benefits and detriments.

AES is fast, and symmetric. Blowfish is pretty fast, and also symmetric.

You should read resources like Applied Cryptography for more information.

link|flag
vote up 4 vote down

The best cryptography algorithm is the one that's strong enough to meet the requirements, and no stronger.

This changes on a per-project basis, so there's no single answer.

-Adam

link|flag
vote up 4 vote down

Rijndael / AES (for its security, standardization and pervasiveness)

What does "ease of implementation" mean? You don't think about implementing a crypto algorithm yourself, do you?!

link|flag
vote up 2 vote down

Symmetric or Asymmetric?

And implementing an algorithm yourself is a poor choice - use a scrutinized, vetted library.

link|flag
vote up 1 vote down

The best for simple cyptography is an XOR against a key. It's quick, simple to implement and uses the same process for both encrypting and decrypting.

Edit: Before my rep gets savaged over this quick response, I should clarify that it's not highly secure. But, it provides good, garden-variety encryption for situations that don't require high security.

link|flag
But it's easily broken by anyone who knows you use it. – The Wicked Flea Oct 7 '08 at 16:12
Internet, this is sarcasm. Sarcasm, this is the place where you can be a real idea, and a god for the misguided. – Tom Ritter Oct 7 '08 at 16:16
@KLUGE: Actually this can be very safe if you use something like your favourite CD or DVD as a key. The key is then massive. All you need at the other end is a copy of the same CD or DVD. < Perhaps you could add this suggest and get some rep back. – _ande_turner_ Oct 7 '08 at 16:23
@Ande - what you're describing is a One Time Pad, and it's provably completely secure IF the pad is as long as the data encrypted and it's randomly generated. Using something like a CD or DVD where the data is non-random reduces security to the point where you're relying on luck instead of math. – Tom Ritter Oct 7 '08 at 16:30
@Ande: Great suggestion. I wish I could upvote your comment. – Kluge Oct 7 '08 at 16:34
show 3 more comments
vote up 1 vote down

My personal favorite is still Blowfish. I like how it works, I have used it a lot in applications, it's easy to use in the libCrypto library from OpenSSL and people consider it to be very secure. Further it can have keys up to 448 bits long. Twofish is basically a variation of Blowfish, created for the AES contest (which Rijndael finally won), but I like Blowfish more than Twofish. It's also not much slower than other algorithm, actually it's one of the faster ones.

link|flag
vote up 0 vote down

RSA hands down

link|flag
RSA is slow (as are all asymmetric keys) and also fairly weak for a given key length, though it is the most widely known asymmetric method. Elliptic curve is much stronger at any given key length, and there by quicker for a given level of security. – Hamish Downer Oct 7 '08 at 16:39
vote up 0 vote down

RSA is good, but slow in key generation. For a simpler, but just as good (in my opinion) encryption scheme I use AES.

link|flag
vote up 0 vote down

like everyone else said, Best is a sliding metric.

If your trying to learn to code one, start with the easy classics, and learn your way up.

link|flag
vote up 0 vote down

Those two requirements: security and ease of implementation tend to be at opposite ends of the spectrum. Something like AES is very secure, but not too easy to implement. Rot-13 on the other hand is extremely easy to implement, but slightly less secure :-)

link|flag
ROT-13 is a simple substitution cipher, not even remotely secure :) – Jacco Mar 3 at 11:40
Rot-13 is not that bad. You can't get much more security out of a 0 bit key. On the other hand I think AES is not that hard to implement. I did it once just to see if I can do it and it took me less than a day with wikipedia and the specs. And it is resistant to timing attacks. – stribika Aug 2 at 21:30
vote up 0 vote down

If you're using the .Net framework, the RSA encryption libraries are built in - including the RSA implementation of AES.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.