We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e62857f commit 41d23a6Copy full SHA for 41d23a6
1 file changed
stdlib/2and3/ssl.pyi
@@ -303,6 +303,17 @@ if sys.version_info >= (3, 6):
303
ticket_lifetime_hint: int
304
has_ticket: bool
305
306
+ class VerifyFlags(enum.IntFlag):
307
+ VERIFY_DEFAULT: int
308
+ VERIFY_CRL_CHECK_LEAF: int
309
+ VERIFY_CRL_CHECK_CHAIN: int
310
+ VERIFY_X509_STRICT: int
311
+ VERIFY_X509_TRUSTED_FIRST: int
312
+
313
+ class VerifyMode(enum.IntEnum):
314
+ CERT_NONE: int
315
+ CERT_OPTIONAL: int
316
+ CERT_REQUIRED: int
317
318
# TODO below documented in cpython but not in docs.python.org
319
# taken from python 3.4
0 commit comments