MCPcopy Create free account
hub / github.com/mozilla/cipherscan / parse

Method parse

cscan/messages.py:227–233  ·  view source on GitHub ↗

more robust parser for SKE

(self, parser)

Source from the content-addressed store, hash-verified

225 """ServerKeyExchange class with more robust formatting capability."""
226
227 def parse(self, parser):
228 """more robust parser for SKE"""
229 try:
230 super(ServerKeyExchange, self).parse(parser)
231 except AssertionError:
232 pass
233 return self
234
235 def __format__(self, formatstr):
236 """Return human-readable representation of the object."""

Callers

nothing calls this directly

Calls 1

parseMethod · 0.45

Tested by

no test coverage detected