Help on Symmetric Cryptography algorithm

K

kiran

Hi ,
I need some helpon Symmetric Crptography algorithm. My friend has given a
encrypted message ( encrypted using Symmetric cryptogrraphy algorithm and he
does 't mention on which plat form is used ) . I have to decrypt the the
encrypted message. I tried to decryppt using Symmetric class provided in
..NET library. But it is aksing saltkey,IV information to decrypt. Can't we
do decrpt with out using saltkey,IV....? I want to decrypt the encrypted
message with differenct possible keys.. How can I do this..?
 
J

Jon Skeet [C# MVP]

kiran said:
I need some helpon Symmetric Crptography algorithm. My friend has given a
encrypted message ( encrypted using Symmetric cryptogrraphy algorithm and he
does 't mention on which plat form is used ) . I have to decrypt the the
encrypted message. I tried to decryppt using Symmetric class provided in
.NET library. But it is aksing saltkey,IV information to decrypt. Can't we
do decrpt with out using saltkey,IV....? I want to decrypt the encrypted
message with differenct possible keys.. How can I do this..?

You can only decrypt the message using the same salt, key and IV that
your friend used when encrypting it. If you could decrypt it with any
old key, it wouldn't be much of an encryption algorithm, would it?
 

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

Top