vote up 0 vote down star

Hello,

It seems there's no blowfish in C# that would do the same as this one.So I decided to use it as an external and if it doesnt work again then translate the whole blowfish in C#. But first I'll try to use as an external.

Could you take a look at the C++ blowfish and tell me if I have to change the function parameters(some of them are LPBYTE,which is not included in C#).

Also,I'd be thankful if you tell me how to use them as an external dll(I have it compiled as a dll already),but the function parameters in C++ are frustrating me.

Edit: I need to call only Initialize,Encode and Decode.

Thanks in advance!

flag

What is the environment for the C++? Can you compile it with /CLR support? If so, then it's pretty easy to call into a C# DLL. The only problem is sometimes you will run into problems compiling with CLR support because certain switches are not compatible. – aaronls Mar 29 at 11:39

1 Answer

vote up 2 vote down check

I've had a similar problem to this on a previous project. Having looked at the C++ code, it is using ECB as you suspected in your previous post. I think I see the reason why you get different results using Blowfish.NET (Arkain's suggestion). The C++ code casts the inputs into two DWORDs as it enciphers. I believe Blowfish.NET will be doing the right thing by preserving the byte order in the DWORDs it uses internally to encipher.

For example: In the C++ code, the bytes 0102030405060708 become 0x04030201 and 0x08070605. The .NET implementation will be becoming 0x01020304 and 0x05060708.

link|flag
@Dave Cluderay,Thanks! Can you give me more information about fixing that problem? How to fix the byte order – John Mar 29 at 15:25
@Dave, I'd very thankful if you could take a look at what i did(check the //comments) pastebin.com/m2df92629 Eventually,if i did something wrong ,please use pastebin.com to show me how it should be done. Thanks,Dave! – John Mar 29 at 15:37
OK - see new comments - I think that should be OK. – Dave Cluderay Mar 29 at 16:02
@Dave,It doesn't work. I also tried passing the bytes in reverse order.Not working either. This is what I'm doing:Encrypt the array in C# and try to decrypt it in C++.The key is the same. Any other suggestions? :( – John Mar 29 at 16:14
I do apologize - the code we just changed is also called during initialisation - so we have caused a side-effect. – Dave Cluderay Mar 29 at 17:22
show 3 more comments

Your Answer

Get an OpenID
or

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