mirror of
https://github.com/noDRM/DeDRM_tools.git
synced 2025-10-23 23:07:47 -04:00
Merge branch 'Python2': Get the changes to fix Kindle key retrieval for Mac OS X Big Sur
This commit is contained in:
commit
036f9007fd
1 changed files with 5 additions and 2 deletions
|
|
@ -1174,8 +1174,11 @@ elif isosx:
|
|||
|
||||
libcrypto = find_library('crypto')
|
||||
if libcrypto is None:
|
||||
raise DrmException("libcrypto not found")
|
||||
libcrypto = CDLL(libcrypto)
|
||||
libcrypto = '/usr/lib/libcrypto.dylib'
|
||||
try:
|
||||
libcrypto = CDLL(libcrypto)
|
||||
except Exception as e:
|
||||
raise DrmException("libcrypto not found: " % e)
|
||||
|
||||
# From OpenSSL's crypto aes header
|
||||
#
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue