GSS_Init_sec_context: client-side call for the SSP
(
self,
Context: CONTEXT,
input_token=None,
target_name: Optional[str] = None,
req_flags: Optional[GSS_C_FLAGS] = None,
chan_bindings: GssChannelBindings = GSS_C_NO_CHANNEL_BINDINGS,
)
| 458 | |
| 459 | @abc.abstractmethod |
| 460 | def GSS_Init_sec_context( |
| 461 | self, |
| 462 | Context: CONTEXT, |
| 463 | input_token=None, |
| 464 | target_name: Optional[str] = None, |
| 465 | req_flags: Optional[GSS_C_FLAGS] = None, |
| 466 | chan_bindings: GssChannelBindings = GSS_C_NO_CHANNEL_BINDINGS, |
| 467 | ): |
| 468 | """ |
| 469 | GSS_Init_sec_context: client-side call for the SSP |
| 470 | """ |
| 471 | raise NotImplementedError |
| 472 | |
| 473 | @abc.abstractmethod |
| 474 | def GSS_Accept_sec_context( |
no outgoing calls
no test coverage detected