Lines Matching refs:keyfile
422 Instantiate with: POP3_SSL(hostname, port=995, keyfile=None, certfile=None,
427 keyfile - PEM formatted file that contains your private key
434 def __init__(self, host, port=POP3_SSL_PORT, keyfile=None, certfile=None,
436 if context is not None and keyfile is not None:
437 raise ValueError("context and keyfile arguments are mutually "
442 if keyfile is not None or certfile is not None:
444 warnings.warn("keyfile and certfile are deprecated, use a "
446 self.keyfile = keyfile
450 keyfile=keyfile)
460 def stls(self, keyfile=None, certfile=None, context=None):