MCPcopy Create free account
hub / github.com/secdev/scapy / GSS_WrapEx

Method GSS_WrapEx

scapy/layers/gssapi.py:521–536  ·  view source on GitHub ↗

GSS_WrapEx :param Context: the SSP context :param qop_req: int (0 specifies default QOP) :param msgs: list of WRAP_MSG :returns: (data, signature)

(
        self,
        Context: CONTEXT,
        msgs: List[WRAP_MSG],
        qop_req: int = GSS_C_QOP_DEFAULT,
    )

Source from the content-addressed store, hash-verified

519
520 @abc.abstractmethod
521 def GSS_WrapEx(
522 self,
523 Context: CONTEXT,
524 msgs: List[WRAP_MSG],
525 qop_req: int = GSS_C_QOP_DEFAULT,
526 ) -> Tuple[List[WRAP_MSG], Any]:
527 """
528 GSS_WrapEx
529
530 :param Context: the SSP context
531 :param qop_req: int (0 specifies default QOP)
532 :param msgs: list of WRAP_MSG
533
534 :returns: (data, signature)
535 """
536 raise NotImplementedError
537
538 @abc.abstractmethod
539 def GSS_UnwrapEx(

Callers 2

GSS_WrapMethod · 0.95
out_pktMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected