-
Notifications
You must be signed in to change notification settings - Fork 7
/
INSTALL
17 lines (13 loc) · 829 Bytes
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
OpenSSL.NET - INSTALL
Both libeay32.dll and ssleay32.dll are native C++ DLLs and as such
depend on the MSVC 2008 CRT. This means you must install the
Microsoft Visual C++ 2008 Redistributable Package (x86) on each machine
that you wish to use OpenSSL.NET.
Alternatively, you can build your own version of libeay32.dll and ssleay32.dll
from source to meet whatever requirements are necessary in your environment.
For development, I build these DLLs with debugging symbols so that I can
step into them as needed. One could also statically link the CRT so that
the MSVC 2008 CRT is not required to be installed on the target machine.
Make sure you have libeay32.dll and ssleay32.dll in the current working
directory of your application or in your PATH.
In your .NET project, add a reference to the ManagedOpenSsl.dll assembly.