Lines Matching refs:keyfile
752 def starttls(self, keyfile=None, certfile=None, context=None):
759 session. If you provide the keyfile and certfile parameters,
777 if context is not None and keyfile is not None:
778 raise ValueError("context and keyfile arguments are mutually "
783 if keyfile is not None or certfile is not None:
785 warnings.warn("keyfile and certfile are deprecated, use a "
789 keyfile=keyfile)
1020 as they do in the SMTP class. keyfile and certfile are also optional -
1023 SSLContext, and is an alternative to keyfile and certfile; If it is
1024 specified both keyfile and certfile must be None.
1031 keyfile=None, certfile=None,
1034 if context is not None and keyfile is not None:
1035 raise ValueError("context and keyfile arguments are mutually "
1040 if keyfile is not None or certfile is not None:
1042 warnings.warn("keyfile and certfile are deprecated, use a "
1044 self.keyfile = keyfile
1048 keyfile=keyfile)