docs: Document Python TLS requirements (#12276)
* 🔧 Add simple test script * 📝 Add documentation * 🔧 It works, use it * 🔧 Make the linter happy * 🔧 Check on bootstrap * Trivial copyediting s/operation system/operating system/
This commit is contained in:
parent
b160093b91
commit
e8735cc005
4 changed files with 69 additions and 2 deletions
34
script/tls.py
Normal file
34
script/tls.py
Normal file
|
@ -0,0 +1,34 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
import json
|
||||
import urllib2
|
||||
import sys
|
||||
|
||||
def check_tls(verbose):
|
||||
response = json.load(urllib2.urlopen('https://www.howsmyssl.com/a/check'))
|
||||
tls = response['tls_version']
|
||||
|
||||
if sys.platform == "linux" or sys.platform == "linux2":
|
||||
tutorial = "./docs/development/build-instructions-linux.md"
|
||||
elif sys.platform == "darwin":
|
||||
tutorial = "./docs/development/build-instructions-osx.md"
|
||||
elif sys.platform == "win32":
|
||||
tutorial = "./docs/development/build-instructions-windows.md"
|
||||
else:
|
||||
tutorial = "build instructions for your operating system" \
|
||||
+ "in ./docs/development/"
|
||||
|
||||
if tls == "TLS 1.0":
|
||||
print "Your system/python combination is using an outdated security" \
|
||||
+ "protocol and will not be able to compile Electron. Please see " \
|
||||
+ tutorial + "." \
|
||||
+ "for instructions on how to update Python."
|
||||
sys.exit(1)
|
||||
else:
|
||||
if verbose:
|
||||
print "Your Python is using " + tls + ", which is sufficient for" \
|
||||
+ "building Electron."
|
||||
|
||||
if __name__ == '__main__':
|
||||
check_tls(True)
|
||||
sys.exit(0)
|
Loading…
Add table
Add a link
Reference in a new issue