From: Matt Caswell Date: Fri, 8 Jul 2016 11:20:42 +0000 (+0100) Subject: Move the PSK preamble for tls_process_key_exchange() X-Git-Tag: OpenSSL_1_1_0-pre6~167 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=02a74590bb9e22d0f4131e8bd6b391402f7d3752;p=oweals%2Fopenssl.git Move the PSK preamble for tls_process_key_exchange() The function tls_process_key_exchange() is too long. This commit moves the PSK preamble processing out to a separate function. Reviewed-by: Richard Levitte --- diff --git a/ssl/statem/statem_clnt.c b/ssl/statem/statem_clnt.c index 38b20a7188..01088af312 100644 --- a/ssl/statem/statem_clnt.c +++ b/ssl/statem/statem_clnt.c @@ -1302,6 +1302,15 @@ MSG_PROCESS_RETURN tls_process_server_certificate(SSL *s, PACKET *pkt) return ret; } +static int tls_process_ske_psk_preamble(SSL *s, int *al) +{ +#ifndef OPENSSL_NO_PSK + +#else + +#endif +} + MSG_PROCESS_RETURN tls_process_key_exchange(SSL *s, PACKET *pkt) { EVP_MD_CTX *md_ctx;