* Send the initial nonce for the encrypted connection. * @param p The packet to send the data in. */
| 251 | * @param p The packet to send the data in. |
| 252 | */ |
| 253 | void X25519AuthenticationHandler::SendEnableEncryption(struct Packet &p) const |
| 254 | { |
| 255 | p.Send_bytes(this->encryption_nonce); |
| 256 | } |
| 257 | |
| 258 | /** |
| 259 | * Receive the initial nonce for the encrypted connection. |
nothing calls this directly
no test coverage detected