construct key exchange with known ssl parms
| 54 | |
| 55 | // construct key exchange with known ssl parms |
| 56 | void ClientKeyExchange::createKey(SSL& ssl) |
| 57 | { |
| 58 | const ClientKeyFactory& ckf = ssl.getFactory().getClientKey(); |
| 59 | client_key_ = ckf.CreateObject(ssl.getSecurity().get_parms().kea_); |
| 60 | |
| 61 | if (!client_key_) |
| 62 | ssl.SetError(factory_error); |
| 63 | } |
| 64 | |
| 65 | |
| 66 | // construct key exchange with known ssl parms |
nothing calls this directly
no test coverage detected