Okay, so I know why VS .NET is mad about the DLL--it's unmanaged and you can't add references to unmanaged DLLs. However, I can still load the DLL and call the functions.
However, The encrypt (maybe more) function is accessing memory outside of its scope and causing the program to crash.
So, I'm still needing a way to access the encryption--whether I do it or I have a library that can do it.
Also, what am I doing wrong in the c++ application with the Encrypt/Decrypt?
I expected for the Decrypt to undo what Encrypt did.
Thanks!
|