Lines Matching refs:certfile
422 Instantiate with: POP3_SSL(hostname, port=995, keyfile=None, certfile=None,
428 certfile - PEM formatted certificate chain file
434 def __init__(self, host, port=POP3_SSL_PORT, keyfile=None, certfile=None,
439 if context is not None and certfile is not None:
440 raise ValueError("context and certfile arguments are mutually "
442 if keyfile is not None or certfile is not None:
444 warnings.warn("keyfile and certfile are deprecated, use a "
447 self.certfile = certfile
449 context = ssl._create_stdlib_context(certfile=certfile,
460 def stls(self, keyfile=None, certfile=None, context=None):