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

Class TLS_Ext_RenegotiationInfo

scapy/layers/tls/extensions.py:685–692  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

683
684
685class TLS_Ext_RenegotiationInfo(TLS_Ext_Unknown): # RFC 5746
686 name = "TLS Extension - Renegotiation Indication"
687 fields_desc = [ShortEnumField("type", 0xff01, _tls_ext),
688 MayEnd(ShortField("len", None)),
689 FieldLenField("reneg_conn_len", None, fmt='B',
690 length_of="renegotiated_connection"),
691 StrLenField("renegotiated_connection", "",
692 length_from=lambda pkt: pkt.reneg_conn_len)]
693
694
695class TLS_Ext_RecordSizeLimit(TLS_Ext_Unknown): # RFC 8449

Callers 1

Calls 5

ShortEnumFieldClass · 0.90
MayEndClass · 0.90
ShortFieldClass · 0.90
FieldLenFieldClass · 0.90
StrLenFieldClass · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…