Search Results

1
vote

Problem in calling a C++ dll function from C#

To add to what jachymko has said, also check the documentation for BitConverter - you need to be sure you are passing the key and data in the byte order you intended. Note - from your previous thre …
0
votes

C#: Blowfish Encipher a single dword

Hi John Blowfish works on eight byte blocks. The only way to encrypt data that falls short of eight bytes (or a multiple of eight) is to pad it out (in this case with zeroes). You n …
2
votes

DllImport a c++ DLL in to a C# app, BYTE * p

I pasted your code directly into VS2008 and it runs perfectly on my 32-bit machine (added a .def file to set the exported name). Is your C++ library definitely a pure win32 project? The error messa …