diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2022-06-29 08:30:05 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2022-06-29 08:30:05 +0000 |
commit | f2026376d9eec4473352e668b00b60fb058c57f9 (patch) | |
tree | 77ff3fc106fc8bd2ce61037e7f978fbf3d800485 /lib/libssl/ssl_locl.h | |
parent | 23e7160eec5a4398f4b1317464f2cbea06c5294e (diff) |
Also check the security level of the 'tmp dh'
ok beck jsing
Diffstat (limited to 'lib/libssl/ssl_locl.h')
-rw-r--r-- | lib/libssl/ssl_locl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libssl/ssl_locl.h b/lib/libssl/ssl_locl.h index f198c4b0353..5410600cf11 100644 --- a/lib/libssl/ssl_locl.h +++ b/lib/libssl/ssl_locl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_locl.h,v 1.399 2022/06/29 08:27:51 tb Exp $ */ +/* $OpenBSD: ssl_locl.h,v 1.400 2022/06/29 08:30:04 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -1290,6 +1290,7 @@ int ssl_security_dummy_cb(const SSL *ssl, const SSL_CTX *ctx, int op, int ssl_ctx_security(const SSL_CTX *ctx, int op, int bits, int nid, void *other); int ssl_security(const SSL *ssl, int op, int bits, int nid, void * other); +int ssl_ctx_security_dh(const SSL_CTX *ctx, DH *dh); int ssl_security_dh(const SSL *ssl, DH *dh); int ssl_get_new_session(SSL *s, int session); |