Force use of CRAM-MD5 authentication. (typ, [data]) = .login_cram_md5(user, password)
(self, user, password)
| 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): |
nothing calls this directly
no test coverage detected