Called when the server sends a challenge message. Generally, this method should return :const:`None` when authentication is complete from a client perspective. Otherwise, a string should be returned.
(self, challenge)
| 98 | return None |
| 99 | |
| 100 | def evaluate_challenge(self, challenge): |
| 101 | """ |
| 102 | Called when the server sends a challenge message. Generally, this method |
| 103 | should return :const:`None` when authentication is complete from a |
| 104 | client perspective. Otherwise, a string should be returned. |
| 105 | """ |
| 106 | raise NotImplementedError() |
| 107 | |
| 108 | def on_authentication_success(self, token): |
| 109 | """ |
no outgoing calls
no test coverage detected