diff options
author | jsing <> | 2022-01-07 16:45:06 +0000 |
---|---|---|
committer | jsing <> | 2022-01-07 16:45:06 +0000 |
commit | 2c1d085f7eb5453e4fb95d057e86c38c946db67c (patch) | |
tree | 7e6b16ad127edd4e8e0cceddf4c00ec784c29233 /src/lib/libssl/ssl_locl.h | |
parent | 2c6556e224486550bce48b776ee3df483e7fffcb (diff) | |
download | openbsd-2c1d085f7eb5453e4fb95d057e86c38c946db67c.tar.gz openbsd-2c1d085f7eb5453e4fb95d057e86c38c946db67c.tar.bz2 openbsd-2c1d085f7eb5453e4fb95d057e86c38c946db67c.zip |
Rename dh_tmp to dhe_params.
Support for non-ephemeral DH was removed a long time ago - as such, the
dh_tmp and dh_tmp_cb are used for DHE parameters. Rename them to reflect
reality.
ok inoguchi@ tb@
Diffstat (limited to '')
-rw-r--r-- | src/lib/libssl/ssl_locl.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h index cc7b342247..5361704d70 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.375 2022/01/07 15:46:30 jsing Exp $ */ | 1 | /* $OpenBSD: ssl_locl.h,v 1.376 2022/01/07 16:45:06 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 | * |
@@ -1212,9 +1212,9 @@ typedef struct cert_st { | |||
1212 | unsigned long mask_k; | 1212 | unsigned long mask_k; |
1213 | unsigned long mask_a; | 1213 | unsigned long mask_a; |
1214 | 1214 | ||
1215 | DH *dh_tmp; | 1215 | DH *dhe_params; |
1216 | DH *(*dh_tmp_cb)(SSL *ssl, int is_export, int keysize); | 1216 | DH *(*dhe_params_cb)(SSL *ssl, int is_export, int keysize); |
1217 | int dh_tmp_auto; | 1217 | int dhe_params_auto; |
1218 | 1218 | ||
1219 | CERT_PKEY pkeys[SSL_PKEY_NUM]; | 1219 | CERT_PKEY pkeys[SSL_PKEY_NUM]; |
1220 | 1220 | ||