Home | History | Annotate | Download | only in Lib

Lines Matching refs:keyfile

417         Instantiate with: POP3_SSL(hostname, port=995, keyfile=None, certfile=None,
422 keyfile - PEM formatted file that contains your private key
429 def __init__(self, host, port=POP3_SSL_PORT, keyfile=None, certfile=None,
431 if context is not None and keyfile is not None:
432 raise ValueError("context and keyfile arguments are mutually "
437 if keyfile is not None or certfile is not None:
439 warnings.warn("keyfile and certfile are deprecated, use a "
441 self.keyfile = keyfile
445 keyfile=keyfile)
455 def stls(self, keyfile=None, certfile=None, context=None):