1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
.\" $OpenBSD: SSL_set_tmp_ecdh.3,v 1.6 2021/11/30 15:58:08 jsing Exp $
.\"
.\" Copyright (c) 2017 Ingo Schwarze <schwarze@openbsd.org>
.\"
.\" Permission to use, copy, modify, and distribute this software for any
.\" purpose with or without fee is hereby granted, provided that the above
.\" copyright notice and this permission notice appear in all copies.
.\"
.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
.Dd $Mdocdate: November 30 2021 $
.Dt SSL_SET_TMP_ECDH 3
.Os
.Sh NAME
.Nm SSL_set_tmp_ecdh ,
.Nm SSL_CTX_set_tmp_ecdh ,
.Nm SSL_set_ecdh_auto ,
.Nm SSL_CTX_set_ecdh_auto ,
.Nm SSL_set_tmp_ecdh_callback ,
.Nm SSL_CTX_set_tmp_ecdh_callback
.Nd select a curve for ECDH ephemeral key exchange
.Sh SYNOPSIS
.In openssl/ssl.h
.Ft long
.Fo SSL_set_tmp_ecdh
.Fa "SSL *ssl"
.Fa "EC_KEY *ecdh"
.Fc
.Ft long
.Fo SSL_CTX_set_tmp_ecdh
.Fa "SSL_CTX *ctx"
.Fa "EC_KEY *ecdh"
.Fc
.Ft long
.Fo SSL_set_ecdh_auto
.Fa "SSL *ssl"
.Fa "int state"
.Fc
.Ft long
.Fo SSL_CTX_set_ecdh_auto
.Fa "SSL_CTX *ctx"
.Fa "int state"
.Fc
.Ft void
.Fo SSL_set_tmp_ecdh_callback
.Fa "SSL *ssl"
.Fa "EC_KEY *(*ecdh)(SSL *ssl, int is_export, int keylength)"
.Fc
.Ft void
.Fo SSL_CTX_set_tmp_ecdh_callback
.Fa "SSL_CTX *ctx"
.Fa "EC_KEY *(*ecdh)(SSL *ssl, int is_export, int keylength)"
.Fc
.Sh DESCRIPTION
Automatic EC curve selection and generation is always enabled in
LibreSSL, and applications cannot manually provide EC keys for use
with ECDH key exchange.
.Pp
The only remaining effect of
.Fn SSL_set_tmp_ecdh
is that the curve of the given
.Fa ecdh
key becomes the only curve enabled for the
.Fa ssl
connection, so it is equivalent to calling
.Xr SSL_set1_groups_list 3
with the same single curve name.
.Pp
.Fn SSL_CTX_set_tmp_ecdh
has the same effect on all connections that will be created from
.Fa ctx
in the future.
.Pp
The functions
.Fn SSL_set_ecdh_auto ,
.Fn SSL_CTX_set_ecdh_auto ,
.Fn SSL_set_tmp_ecdh_callback ,
and
.Fn SSL_CTX_set_tmp_ecdh_callback
are deprecated and have no effect.
.Sh RETURN VALUES
.Fn SSL_set_tmp_ecdh
and
.Fn SSL_CTX_set_tmp_ecdh
return 1 on success or 0 on failure.
.Pp
.Fn SSL_set_ecdh_auto ,
.Fn SSL_CTX_set_ecdh_auto ,
.Fn SSL_set_tmp_ecdh_callback ,
and
.Fn SSL_CTX_set_tmp_ecdh_callback
always return 1.
.Sh SEE ALSO
.Xr ssl 3 ,
.Xr SSL_CTX_set1_groups 3 ,
.Xr SSL_CTX_set_cipher_list 3 ,
.Xr SSL_CTX_set_options 3 ,
.Xr SSL_CTX_set_tmp_dh_callback 3 ,
.Xr SSL_new 3
.Sh HISTORY
.Fn SSL_set_tmp_ecdh ,
.Fn SSL_CTX_set_tmp_ecdh ,
.Fn SSL_set_tmp_ecdh_callback ,
and
.Fn SSL_CTX_set_tmp_ecdh_callback
first appeared in OpenSSL 0.9.8 and have been available since
.Ox 4.5 .
.Pp
.Fn SSL_CTX_set_ecdh_auto
and
.Fn SSL_set_ecdh_auto
first appeared in OpenSSL 1.0.2 and have been available since
.Ox 5.7 .
|