You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
759 B
24 lines
759 B
# Test ssl.SSLContext.verify_mode attribute.
|
|
# It's not available in the axtls implementation, so has an independent test.
|
|
|
|
try:
|
|
import ssl
|
|
except ImportError:
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
if not hasattr(ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT), "verify_mode"):
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
# Test default verify_mode for server (client default is different in MicroPython).
|
|
ctx = ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER)
|
|
print(ctx.verify_mode == ssl.CERT_NONE)
|
|
|
|
# Test setting and getting verify_mode.
|
|
ctx.verify_mode = ssl.CERT_NONE
|
|
print(ctx.verify_mode == ssl.CERT_NONE)
|
|
ctx.verify_mode = ssl.CERT_OPTIONAL
|
|
print(ctx.verify_mode == ssl.CERT_OPTIONAL)
|
|
ctx.verify_mode = ssl.CERT_REQUIRED
|
|
print(ctx.verify_mode == ssl.CERT_REQUIRED)
|
|
|