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
| 496 | // |
| 497 | // Renegotiation is not defined in TLS 1.3. |
| 498 | type RenegotiationSupport int |
| 499 | |
| 500 | const ( |
| 501 | // RenegotiateNever disables renegotiation. |
nothing calls this directly
no outgoing calls
no test coverage detected