Re: key length vs block length, most secure encryption algorithm today?
- From: rossum <rossum48@xxxxxxxxxxxx>
- Date: Thu, 14 Aug 2008 13:04:59 +0100
On Thu, 14 Aug 2008 04:12:05 -0700 (PDT), some guy <ncnlcss@xxxxxxxxx>
wrote:
I'm looking for the most secure encryption algorithm. I found AES-256,Twofish is a development of Blowfish and more secure. Use Twofish in
blowfish-448 and twofish(-256?). Is there a more secure one?
preference to Blowfish. Both AES (Rijndael) and Twofish were
finalists in the AES competition. A third finalist, Serpent, was
generally considered the most secure and also the slowest. Rijndael
was fastest, which is probably why it won, and Twofish comes in
between, slower than AES/Rijndael but less secure than Serpent.
Use Serpent then as it is slow and more secure. Any one of AES,
Speed doesn't really matter to me. I use it mostly to encrypt small
documents.
Serpent and Twofish are probably going to be secure enough for you.
No, all three AES, Twofish and Serpent have a 128 bit blocksize. If
From what I gather AES-256 is the only one that has a 128-bit blocklength.
you look back at the original (pre-AES) Rijndael design then there is
a 256 bit block version, but this is less well tested than AES.
Does this make AES-256 more secure than the other two, despiteNever ever use a passphrase directly as your key. Use a complex
the fact that blowfish has a 448 bit key? I also found that blowfish
needs just over 500 algorithm iterations to test a single key, to make
it resistant to bruteforce attacks.
Using the full key length of any of these encryption algorithm, random
characters, capital and non-capital, numbers and punctuation, are they
crackable in a lifetime?
passphrase (google for "diceware") to seed a key derivation function
(KDF). A simple KDF is just to feed the passphrase into a Hash
function (SHA-256 or similar), for more complex ones see PBKDF1 or
PBKDF2, as defined in RFC 2898 (http://tools.ietf.org/html/rfc2898)
rossum
Thanks
.
- References:
- Prev by Date: Re: key length vs block length, most secure encryption algorithm today?
- Next by Date: Re: key length vs block length, most secure encryption algorithm today?
- Previous by thread: Re: key length vs block length, most secure encryption algorithm today?
- Next by thread: Re: key length vs block length, most secure encryption algorithm today?
- Index(es):
Relevant Pages
|