MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / login_cram_md5

Method login_cram_md5

tools/python-3.11.9-amd64/Lib/imaplib.py:617–623  ·  view source on GitHub ↗

Force use of CRAM-MD5 authentication. (typ, [data]) = .login_cram_md5(user, password)

(self, user, password)

Source from the content-addressed store, hash-verified

615
616
617 def login_cram_md5(self, user, password):
618 """ Force use of CRAM-MD5 authentication.
619
620 (typ, [data]) = <instance>.login_cram_md5(user, password)
621 """
622 self.user, self.password = user, password
623 return self.authenticate('CRAM-MD5', self._CRAM_MD5_AUTH)
624
625
626 def _CRAM_MD5_AUTH(self, challenge):

Callers

nothing calls this directly

Calls 1

authenticateMethod · 0.95

Tested by

no test coverage detected