:param Context: the SSP context :param msgs: list of VERIF_MSG :param signature: the signature :raises ValueError: if MIC failure.
(
self,
Context: CONTEXT,
msgs: List[MIC_MSG],
signature,
)
| 574 | |
| 575 | @abc.abstractmethod |
| 576 | def GSS_VerifyMICEx( |
| 577 | self, |
| 578 | Context: CONTEXT, |
| 579 | msgs: List[MIC_MSG], |
| 580 | signature, |
| 581 | ) -> None: |
| 582 | """ |
| 583 | :param Context: the SSP context |
| 584 | :param msgs: list of VERIF_MSG |
| 585 | :param signature: the signature |
| 586 | |
| 587 | :raises ValueError: if MIC failure. |
| 588 | """ |
| 589 | raise NotImplementedError |
| 590 | |
| 591 | @abc.abstractmethod |
| 592 | def MaximumSignatureLength(self, Context: CONTEXT): |
no outgoing calls
no test coverage detected