| 2146 | |
| 2147 | |
| 2148 | bool SSL_CTX::SetDH(const DH& dh) |
| 2149 | { |
| 2150 | dhParms_.p_ = dh.p->int_; |
| 2151 | dhParms_.g_ = dh.g->int_; |
| 2152 | |
| 2153 | return dhParms_.set_ = true; |
| 2154 | } |
| 2155 | |
| 2156 | |
| 2157 | bool SSL_CTX::SetCipherList(const char* list) |
no test coverage detected