summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_locl.h
diff options
context:
space:
mode:
authorjsing <>2016-12-21 16:44:31 +0000
committerjsing <>2016-12-21 16:44:31 +0000
commit678448834c44fed2412e7f59efe2e28f9c80e11c (patch)
treef6cf578a76dfa7785435b0a23d672ccd20cb86f2 /src/lib/libssl/ssl_locl.h
parente8afa36258d3a8aa37c43dd1c5e2e7410f2c007f (diff)
downloadopenbsd-678448834c44fed2412e7f59efe2e28f9c80e11c.tar.gz
openbsd-678448834c44fed2412e7f59efe2e28f9c80e11c.tar.bz2
openbsd-678448834c44fed2412e7f59efe2e28f9c80e11c.zip
Add support for ECDHE with X25519.
Testing of an earlier revision by naddy@. ok beck@
Diffstat (limited to 'src/lib/libssl/ssl_locl.h')
-rw-r--r--src/lib/libssl/ssl_locl.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h
index d7484dd7a0..858be71627 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.140 2016/12/18 13:52:53 jsing Exp $ */ 1/* $OpenBSD: ssl_locl.h,v 1.141 2016/12/21 16:44:31 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 *
@@ -468,6 +468,7 @@ typedef struct sess_cert_st {
468 468
469 DH *peer_dh_tmp; 469 DH *peer_dh_tmp;
470 EC_KEY *peer_ecdh_tmp; 470 EC_KEY *peer_ecdh_tmp;
471 uint8_t *peer_x25519_tmp;
471 472
472 int references; /* actually always 1 at the moment */ 473 int references; /* actually always 1 at the moment */
473} SESS_CERT; 474} SESS_CERT;