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

Method post_build

scapy/layers/tls/handshake.py:535–538  ·  view source on GitHub ↗
(self, p, pay)

Source from the content-addressed store, hash-verified

533 return super(TLSServerHello, self).build(*args, **kargs)
534
535 def post_build(self, p, pay):
536 if self.random_bytes is None:
537 p = p[:10] + randstring(28) + p[10 + 28:]
538 return super(TLSServerHello, self).post_build(p, pay)
539
540 def tls_session_update(self, msg_str):
541 """

Callers

nothing calls this directly

Calls 2

randstringFunction · 0.90
post_buildMethod · 0.45

Tested by

no test coverage detected