Installation instructions.

Unix.

To Install under Unix you should cd to the src directory and edit the first
few lines of the Makefile to point to your SSLeay directories. Then do
"make install".

Windows.

Under Win95 and NT all you should need to do is edit the file Makefile.win32
to point to your SSLeay or OpenSSL location and type:

nmake -f Makefile.win32

This will compile the PKCS#12 code into a static library  called pkcs12.lib and
make pkcs12.exe from it.

If that doesn't work then read on for information about building a project
for it...

The easiest thing to do is just to create a console application project (pkcs12
is a good name) and compile and link everything together. The only thing to
note is that you need the "multithreaded DLL" option under Code generation
(/MD).

Alternatively link everything but pkcs12.c into a DLL (e.g. PKCS12.DLL) then
compile pkcs12.c linked to the DLL.
