diff options
author | tb <> | 2022-06-29 08:27:52 +0000 |
---|---|---|
committer | tb <> | 2022-06-29 08:27:52 +0000 |
commit | d514ed3f0a5ed2d924983d4533a179823bf09ca0 (patch) | |
tree | 737bede5c25ec5b6855578423751b08517e50653 /src/lib/libssl/ssl_locl.h | |
parent | 24c464130eda826952b6d98e975e3dd7c8181b84 (diff) | |
download | openbsd-d514ed3f0a5ed2d924983d4533a179823bf09ca0.tar.gz openbsd-d514ed3f0a5ed2d924983d4533a179823bf09ca0.tar.bz2 openbsd-d514ed3f0a5ed2d924983d4533a179823bf09ca0.zip |
Check the security of DH key shares
ok beck, looks good to jsing
Diffstat (limited to 'src/lib/libssl/ssl_locl.h')
-rw-r--r-- | src/lib/libssl/ssl_locl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h index ed033abc91..f198c4b035 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.398 2022/06/29 07:59:14 tb Exp $ */ | 1 | /* $OpenBSD: ssl_locl.h,v 1.399 2022/06/29 08:27:51 tb 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 | * |
@@ -1290,6 +1290,7 @@ int ssl_security_dummy_cb(const SSL *ssl, const SSL_CTX *ctx, int op, | |||
1290 | int ssl_ctx_security(const SSL_CTX *ctx, int op, int bits, int nid, | 1290 | int ssl_ctx_security(const SSL_CTX *ctx, int op, int bits, int nid, |
1291 | void *other); | 1291 | void *other); |
1292 | int ssl_security(const SSL *ssl, int op, int bits, int nid, void * other); | 1292 | int ssl_security(const SSL *ssl, int op, int bits, int nid, void * other); |
1293 | int ssl_security_dh(const SSL *ssl, DH *dh); | ||
1293 | 1294 | ||
1294 | int ssl_get_new_session(SSL *s, int session); | 1295 | int ssl_get_new_session(SSL *s, int session); |
1295 | int ssl_get_prev_session(SSL *s, CBS *session_id, CBS *ext_block, | 1296 | int ssl_get_prev_session(SSL *s, CBS *session_id, CBS *ext_block, |