(self)
| 257 | raise NotImplementedError("get_initial_challenge not implemented") |
| 258 | |
| 259 | def initial_response(self): |
| 260 | if self.server_authenticator_class == "com.datastax.bdp.cassandra.auth.DseAuthenticator": |
| 261 | return self.get_mechanism() |
| 262 | else: |
| 263 | return self.evaluate_challenge(self.get_initial_challenge()) |
| 264 | |
| 265 | |
| 266 | class PlainTextAuthenticator(BaseDSEAuthenticator): |
nothing calls this directly
no test coverage detected