如何判断源代码构建的python是否启用了SSL?任
上下文:
答案 0 :(得分:11)
如果要做的只是确定是否安装了openssl
,您可以解析openssl version
的输出:
$ openssl version
OpenSSL 1.0.2g-fips 1 Mar 2016
您可以从version
获取all sorts of information,例如,其存储的目录:
$ openssl version -d
OPENSSLDIR: "/usr/lib/ssl"
就Python而言,我不确定在运行configure之前你怎么知道(也许检查config.log
的内容?)但是一旦安装了Python;只需解析ssl.OPENSSL_VERSION
的输出,如下所示:
$ python -c "import ssl; print(ssl.OPENSSL_VERSION)"
OpenSSL 1.0.2g-fips 1 Mar 2016
有关更多信息,请使用sysconfig
模块,例如:
$ python -c "import sysconfig; print(sysconfig.get_config_var('CONFIG_ARGS'))"
'--enable-shared' '--prefix=/usr' '--enable-ipv6' '--enable-unicode=ucs4' '--with-dbmliborder=bdb:gdbm' '--with-system-expat' '--with-computed-gotos' '--with-system-ffi' '--with-fpectl' 'CC=x86_64-linux-gnu-gcc' 'CFLAGS=-Wdate-time -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security ' 'LDFLAGS=-Wl,-Bsymbolic-functions -Wl,-z,relro'