encryption question

  • Thread starter Thread starter Danny
  • Start date Start date
D

Danny

Hi All,

Using the rijndael algorithm:

RijndaelManaged rijndael = new RijndaelManaged();

rijndael.KeySize = 128;
rijndael.Key = key;

rijndael.Mode = CipherMode.ECB;
rijndael.Padding = PaddingMode.None;
rijndael.BlockSize = 128;


If I have the decrypted value and the encrypted value, can I find the
encryption key?


Thanks,
Danny
 
Hi All,

Using the rijndael algorithm:

            RijndaelManaged rijndael = new RijndaelManaged();

            rijndael.KeySize = 128;
            rijndael.Key = key;

            rijndael.Mode = CipherMode.ECB;
            rijndael.Padding = PaddingMode.None;
            rijndael.BlockSize = 128;

If I have the decrypted value and the encrypted value, can I find the
encryption key?

Thanks,
Danny

The answer is "no". According to Wikipedia there are some attacks on
the algorithm have succeeded, but this does not mean that data secured
using AES is going to be very vulnerable to attack.
 
The answer is "no". According to Wikipedia there are some attacks on
the algorithm have succeeded, but this does not mean that data secured
using AES is going to be very vulnerable to attack.- Hide quoted text -

- Show quoted text -

Yeah, I thought so.
I wasn't going to attack anybody, just trying to restore my old
encryption key... I'll give it a rest.
Thanks man,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top