2
0
mirror of https://github.com/mozilla/cipherscan.git synced 2024-09-28 23:53:41 +02:00

Use custom darwin openssl bin in analyze.py

This commit is contained in:
Julien Vehent 2015-01-18 12:26:59 -05:00
parent a90fc8bc58
commit 3915164430

View File

@ -410,7 +410,9 @@ def build_ciphers_lists(opensslbin):
# use system openssl if not on linux 64 # use system openssl if not on linux 64
if not opensslbin: if not opensslbin:
if platform.system() == 'Linux' and platform.architecture()[0] == '64bit': if platform.system() == 'Linux' and platform.architecture()[0] == '64bit':
opensslbin=mypath + '/openssl' opensslbin = mypath + '/openssl'
elif platform.system() == 'Darwin' and platform.architecture()[0] == '64bit':
opensslbin = mypath + '/openssl-darwin64'
else: else:
opensslbin='openssl' opensslbin='openssl'
print("warning: analyze.py is using system's openssl, which may limit the tested ciphers and recommendations") print("warning: analyze.py is using system's openssl, which may limit the tested ciphers and recommendations")