Returns a message to send to the server to initiate the SASL handshake. :const:`None` may be returned to send an empty message.
(self)
| 91 | """ Set during the connection AUTHENTICATE phase """ |
| 92 | |
| 93 | def initial_response(self): |
| 94 | """ |
| 95 | Returns a message to send to the server to initiate the SASL handshake. |
| 96 | :const:`None` may be returned to send an empty message. |
| 97 | """ |
| 98 | return None |
| 99 | |
| 100 | def evaluate_challenge(self, challenge): |
| 101 | """ |
no outgoing calls
no test coverage detected