RenegotiationSupport enumerates the different levels of support for TLS renegotiation. TLS renegotiation is the act of performing subsequent handshakes on a connection after the first. This significantly complicates the state machine and has been the source of numerous, subtle security issues. Initi
| 523 | // |
| 524 | // Renegotiation is not defined in TLS 1.3. |
| 525 | type RenegotiationSupport int |
| 526 | |
| 527 | const ( |
| 528 | // RenegotiateNever disables renegotiation. |
nothing calls this directly
no outgoing calls
no test coverage detected