5chのhttpsにアクセスできるssleay32.dllとlibeay32.dllのビルド方法の解説です

Visual Studioのサイトの「Visual Studio のダウンロード」から「VisualStudioSetup.exe」を
ダウンロードしてインストーラーを実行して「C++によるデスクトップ開発」を選択してインストール
https://visualstudio.microsoft.com/ja/
Strawberry Perlのサイトから拡張子がmsiのインストーラーを
ダウンロードしてインストーラーを実行してインストール
https://strawberryperl.com/

全てをインストールしたらPATHを有効化するためにWindowsの再起動して下さい

ここから Source code (zip) にあるOpenSSL_1_0_2u.zipをダウンロードして解凍して下さい
https://github.com/openssl/openssl/releases/tag/OpenSSL_1_0_2u

64bit版はVisual Studioのx64 Native Tools Command Promptを起動して
cdコマンドでOpenSSLのフォルダに移動して下のコマンドを実行
perl Configure VC-WIN64A -DOPENSSL_NO_HEARTBEATS -DOPENSSL_NO_SSL3
ms\do_win64a
nmake -f ms\ntdll.mak
editbin.exe /rebase:base=0x11000000 out32dll\libeay32.dll
editbin.exe /rebase:base=0x12000000 out32dll\ssleay32.dll

32bit版はVisual Studioのx86 Native Tools Command Promptを起動して
cdコマンドでopensslのフォルダに移動して下のコマンドを実行
perl Configure VC-WIN32 -DOPENSSL_NO_HEARTBEATS -DOPENSSL_NO_SSL3
ms\do_nasm
nmake -f ms\ntdll.mak
editbin.exe /rebase:base=0x11000000 out32dll\libeay32.dll
editbin.exe /rebase:base=0x12000000 out32dll\ssleay32.dll

opensslのフォルダにout32dllのフォルダが作成されるので中に入ってる
ssleay32.dllとlibeay32.dllをJane Xenoのフォルダにコピーして完了です