summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_kex.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Expose the peer ephemeral public key used for TLSv1.3 key exchange.jsing2020-04-181-1/+42
| | | | | | | | | SSL_get_server_tmp_key() provides the peer ephemeral public key used for key exchange. In the case of TLSv1.3 this is essentially the peer public key from the key share used for TLSv1.3 key exchange, hence make it availaable via SSL_get_server_tmp_key(). ok inoguchi@ tb@
* Factor out/rewrite the ECDHE EC point key exchange code.jsing2020-01-301-0/+141
This reduces replication between the existing TLS client/server and allows the code to soon be reused for TLSv1.3. With feedback from inoguchi@ and tb@ ok inoguchi@ tb@