Downgrade OpenSSL version

This commit is contained in:
Biryuzovye Kleshni 2018-06-27 11:13:49 +00:00
parent 4c0b0c708f
commit 799933086a
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
/Ox /MD common.c winapi.c /link /DLL /OUT:libfastsolver.dll libcrypto.lib
/Ox /MD common.c winapi.c /link /DLL /OUT:libfastsolver.dll libeay32.lib

View File

@ -18,7 +18,7 @@ import utils
codePath = os.path.dirname(__file__)
if hasattr(sys, "winver"):
dumbsolver.libcrypto = ctypes.WinDLL("libcrypto.dll")
dumbsolver.libcrypto = ctypes.WinDLL("libeay32.dll")
else:
dumbsolver.libcrypto = ctypes.CDLL(ctypes.util.find_library("crypto"))