mirror of
https://github.com/noDRM/DeDRM_tools
synced 2024-11-16 19:48:10 +01:00
Try new openssl library name
This commit is contained in:
parent
76a47e0dd0
commit
d7ddc2ab93
1 changed files with 3 additions and 1 deletions
|
@ -115,7 +115,9 @@ if iswindows:
|
|||
|
||||
def _load_crypto_libcrypto():
|
||||
from ctypes.util import find_library
|
||||
libcrypto = find_library('libeay32')
|
||||
libcrypto = find_library('libcrypto-1_1')
|
||||
if libcrypto is None:
|
||||
libcrypto = find_library('libeay32')
|
||||
if libcrypto is None:
|
||||
raise ADEPTError('libcrypto not found')
|
||||
libcrypto = CDLL(libcrypto)
|
||||
|
|
Loading…
Reference in a new issue