| 286 | |
| 287 | |
| 288 | void cServer::PrepareKeys(void) |
| 289 | { |
| 290 | LOGD("Generating protocol encryption keypair..."); |
| 291 | VERIFY(m_PrivateKey.Generate(1024)); |
| 292 | m_PublicKeyDER = m_PrivateKey.GetPubKeyDER(); |
| 293 | } |
| 294 | |
| 295 | |
| 296 |
nothing calls this directly
no test coverage detected