| 266 | } |
| 267 | |
| 268 | std::unique_ptr<NetworkEncryptionHandler> X25519AuthenticationHandler::CreateClientToServerEncryptionHandler() const |
| 269 | { |
| 270 | return std::make_unique<X25519EncryptionHandler>(this->derived_keys.ClientToServer(), this->encryption_nonce); |
| 271 | } |
| 272 | |
| 273 | std::unique_ptr<NetworkEncryptionHandler> X25519AuthenticationHandler::CreateServerToClientEncryptionHandler() const |
| 274 | { |
no test coverage detected