* Get the public key the peer provided for the key exchange. * @return The hexadecimal string representation of the peer's public key. */
| 242 | * @return The hexadecimal string representation of the peer's public key. |
| 243 | */ |
| 244 | std::string X25519AuthenticationHandler::GetPeerPublicKey() const |
| 245 | { |
| 246 | return FormatArrayAsHex(this->peer_public_key); |
| 247 | } |
| 248 | |
| 249 | /** |
| 250 | * Send the initial nonce for the encrypted connection. |
no test coverage detected