GSS_Accept_sec_context: server-side call for the SSP
(
self,
Context: CONTEXT,
input_token=None,
req_flags: Optional[GSS_S_FLAGS] = GSS_S_FLAGS.GSS_S_ALLOW_MISSING_BINDINGS,
chan_bindings: GssChannelBindings = GSS_C_NO_CHANNEL_BINDINGS,
)
| 472 | |
| 473 | @abc.abstractmethod |
| 474 | def GSS_Accept_sec_context( |
| 475 | self, |
| 476 | Context: CONTEXT, |
| 477 | input_token=None, |
| 478 | req_flags: Optional[GSS_S_FLAGS] = GSS_S_FLAGS.GSS_S_ALLOW_MISSING_BINDINGS, |
| 479 | chan_bindings: GssChannelBindings = GSS_C_NO_CHANNEL_BINDINGS, |
| 480 | ): |
| 481 | """ |
| 482 | GSS_Accept_sec_context: server-side call for the SSP |
| 483 | """ |
| 484 | raise NotImplementedError |
| 485 | |
| 486 | @abc.abstractmethod |
| 487 | def GSS_Inquire_names_for_mech(self) -> List[str]: |
no outgoing calls
no test coverage detected