rsaKeyAgreement implements the standard TLS key agreement where the client encrypts the pre-master secret to the server's public key.
| 42 | // rsaKeyAgreement implements the standard TLS key agreement where the client |
| 43 | // encrypts the pre-master secret to the server's public key. |
| 44 | type rsaKeyAgreement struct{} |
| 45 | |
| 46 | func (ka rsaKeyAgreement) generateServerKeyExchange(config *Config, cert *Certificate, clientHello *clientHelloMsg, hello *serverHelloMsg) (*serverKeyExchangeMsg, error) { |
| 47 | return nil, nil |
nothing calls this directly
no outgoing calls
no test coverage detected