| 417 | |
| 418 | |
| 419 | class _X509Context(_AuthContext): |
| 420 | def speculate_command(self) -> MutableMapping[str, Any]: |
| 421 | cmd = {"authenticate": 1, "mechanism": "MONGODB-X509"} |
| 422 | if self.credentials.username is not None: |
| 423 | cmd["user"] = self.credentials.username |
| 424 | return cmd |
| 425 | |
| 426 | |
| 427 | class _OIDCContext(_AuthContext): |
no outgoing calls
no test coverage detected