my source running in vps1: this appears -
Unable to load DLL 'Libeay34.dll': The specified module could not be found.
same source running in vps2: no error like Unable to load DLL 'Libeay34.dll': The specified module could not be found.
why? how come that in my vps 1 that error appear but in my vps 2 there is no error like that. same source.
in my gamecrytography.cs
Unable to load DLL 'Libeay34.dll': The specified module could not be found.
same source running in vps2: no error like Unable to load DLL 'Libeay34.dll': The specified module could not be found.
why? how come that in my vps 1 that error appear but in my vps 2 there is no error like that. same source.
in my gamecrytography.cs
Code:
[DllImport("libeay34.dll", CallingConvention = CallingConvention.Cdecl)]
public extern static void CAST_set_key(IntPtr _key, int len, byte[] data);
[DllImport("winmm.dll")]
public static extern uint timeGetTime();
[DllImport("libeay34.dll", CallingConvention = CallingConvention.Cdecl)]
public extern static void BF_ecb_encrypt(byte[] in_, byte[] out_, IntPtr schedule, int enc);
[DllImport("libeay34.dll", CallingConvention = CallingConvention.Cdecl)]
public extern static void BF_cbc_encrypt(byte[] in_, byte[] out_, int length, IntPtr schedule, byte[] ivec, int enc);
[DllImport("libeay34.dll", CallingConvention = CallingConvention.Cdecl)]
public extern static void CAST_cfb64_encrypt(byte[] in_, byte[] out_, int length, IntPtr schedule, byte[] ivec, ref int num, int enc);
[DllImport("Libeay34.dll", CallingConvention = CallingConvention.Cdecl)]
public extern static void BF_ofb64_encrypt(byte[] in_, byte[] out_, int length, IntPtr schedule, byte[] ivec, out int num);