:param Context: the SSP context :param msgs: list of WRAP_MSG :param signature: the signature :raises ValueError: if MIC failure. :returns: data
(
self, Context: CONTEXT, msgs: List[WRAP_MSG], signature
)
| 537 | |
| 538 | @abc.abstractmethod |
| 539 | def GSS_UnwrapEx( |
| 540 | self, Context: CONTEXT, msgs: List[WRAP_MSG], signature |
| 541 | ) -> List[WRAP_MSG]: |
| 542 | """ |
| 543 | :param Context: the SSP context |
| 544 | :param msgs: list of WRAP_MSG |
| 545 | :param signature: the signature |
| 546 | |
| 547 | :raises ValueError: if MIC failure. |
| 548 | :returns: data |
| 549 | """ |
| 550 | raise NotImplementedError |
| 551 | |
| 552 | @dataclass |
| 553 | class MIC_MSG: |
no outgoing calls
no test coverage detected