MCPcopy Index your code
hub / github.com/RustPython/RustPython / login_cram_md5

Method login_cram_md5

Lib/imaplib.py:714–720  ·  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

712
713
714 def login_cram_md5(self, user, password):
715 """ Force use of CRAM-MD5 authentication.
716
717 (typ, [data]) = <instance>.login_cram_md5(user, password)
718 """
719 self.user, self.password = user, password
720 return self.authenticate('CRAM-MD5', self._CRAM_MD5_AUTH)
721
722
723 def _CRAM_MD5_AUTH(self, challenge):

Calls 1

authenticateMethod · 0.95