summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_locl.h
diff options
context:
space:
mode:
authorjsing <>2018-08-16 17:49:48 +0000
committerjsing <>2018-08-16 17:49:48 +0000
commite0aad66e1b58bd0f70558cdfc329a82340b21347 (patch)
tree026a1f34a90c212be2530e493f22e84bbd3cda54 /src/lib/libssl/ssl_locl.h
parent9cd1cb90ed6f3e1401ed5e8e6febe658cc5e4d61 (diff)
downloadopenbsd-e0aad66e1b58bd0f70558cdfc329a82340b21347.tar.gz
openbsd-e0aad66e1b58bd0f70558cdfc329a82340b21347.tar.bz2
openbsd-e0aad66e1b58bd0f70558cdfc329a82340b21347.zip
Convert ssl3_send_server_key_exchange() to CBB.
ok inoguchi@ tb@
Diffstat (limited to 'src/lib/libssl/ssl_locl.h')
-rw-r--r--src/lib/libssl/ssl_locl.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h
index 696ffc44b9..da4bde09f3 100644
--- a/src/lib/libssl/ssl_locl.h
+++ b/src/lib/libssl/ssl_locl.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssl_locl.h,v 1.205 2018/04/25 07:10:39 tb Exp $ */ 1/* $OpenBSD: ssl_locl.h,v 1.206 2018/08/16 17:49:48 jsing Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -1282,6 +1282,8 @@ int ssl_check_serverhello_tlsext(SSL *s);
1282#define tlsext_tick_md EVP_sha256 1282#define tlsext_tick_md EVP_sha256
1283int tls1_process_ticket(SSL *s, const unsigned char *session_id, int len, 1283int tls1_process_ticket(SSL *s, const unsigned char *session_id, int len,
1284 const unsigned char *limit, SSL_SESSION **ret); 1284 const unsigned char *limit, SSL_SESSION **ret);
1285int tls12_get_sigandhash_cbb(CBB *cbb, const EVP_PKEY *pk,
1286 const EVP_MD *md);
1285int tls12_get_sigandhash(unsigned char *p, const EVP_PKEY *pk, 1287int tls12_get_sigandhash(unsigned char *p, const EVP_PKEY *pk,
1286 const EVP_MD *md); 1288 const EVP_MD *md);
1287int tls12_get_sigid(const EVP_PKEY *pk); 1289int tls12_get_sigid(const EVP_PKEY *pk);