Definitions of TLS extension IDs.
| 117 | |
| 118 | |
| 119 | class ExtensionType(tlslite.constants.ExtensionType): |
| 120 | """Definitions of TLS extension IDs.""" |
| 121 | |
| 122 | status_request = 5 |
| 123 | alpn = 16 |
| 124 | session_ticket = 35 |
| 125 | |
| 126 | heartbeat = 15 # RFC 6520 |
| 127 | status_request_v2 = 17 # RFC 6961 |
| 128 | padding = 21 # RFC 7685 |
| 129 | max_fragment_legth = 1 # RFC 6066 |
| 130 | |
| 131 | # From: Eric Rescorla <ekr at rtfm.com> |
| 132 | # Date: Mon, 7 Dec 2015 05:36:22 -0800 |
| 133 | # [TLS] TLS 1.3 ServerConfiguration |
| 134 | early_data = 40 |
| 135 | pre_shared_key = 41 |
| 136 | key_share = 42 |
| 137 | cookie = 43 |
| 138 | |
| 139 | |
| 140 | class GroupName(tlslite.constants.GroupName): |
nothing calls this directly
no outgoing calls
no test coverage detected