vote up 1 vote down star

I am trying to decrypt (using the DES algorithm) data that comes from a third party in C# code. There are plenty of examples here and elsewhere that have helped me out. The problem is that I don't know what to use for the 'initialization vector'.

The third party supplied a tool for use on the command line (DES.EXE, which I believe is an out-of-the-box build of the libdes library v4.01) which only requires that you supply an encryption key. So, I can decrypt fine with the tool. However, I would rather not spawn a process to run the tool from my code.

My question is how do I generate/find that initialization vector. I am 99.9% sure it can be done from looking at other posts but I can't figure it out. I talked to the third party and they said they do not support that approach. Any help would be greatly appreciated.

flag
In response to the answer below, the initialization vector is required. I believe the third party uses CBC mode. – Mark M Oct 24 at 13:37
Well as I said IF they are using an IV they have to give it to you, because you can't guess it. – svens Oct 24 at 21:26
Somehow it is not required for the command line tool that they provide des.exe. You just enter the key. That's why I believe it is derivable. Thanks for the input. – Mark M Oct 24 at 23:24

1 Answer

vote up 0 vote down

See http://en.wikipedia.org/wiki/Block%5Fcipher%5Fmodes%5Fof%5Foperation for a description of the different modes of operation used in block ciphers. You don't need an initialization vector (IV) if you're using ECB mode which is just encrypting the message block by block. Maybe you have to check your DES library for setting ECB mode / disabling others.

If they aren't using ECB mode you need the IV, you can't "guess" it. The IV in most cases doesn't has to be secret, so it's not a problem to move it around.

link|flag

Your Answer

Get an OpenID
or

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