xref: /openbsd-src/lib/libcrypto/man/DH_set_method.3 (revision 99fd087599a8791921855f21bd7e36130f39aadc)
1.\"	$OpenBSD: DH_set_method.3,v 1.7 2018/04/18 01:09:01 schwarze Exp $
2.\"	OpenSSL b97fdb57 Nov 11 09:33:09 2016 +0100
3.\"
4.\" This file was written by Ulf Moeller <ulf@openssl.org>.
5.\" Copyright (c) 2000, 2002, 2007 The OpenSSL Project.  All rights reserved.
6.\"
7.\" Redistribution and use in source and binary forms, with or without
8.\" modification, are permitted provided that the following conditions
9.\" are met:
10.\"
11.\" 1. Redistributions of source code must retain the above copyright
12.\"    notice, this list of conditions and the following disclaimer.
13.\"
14.\" 2. Redistributions in binary form must reproduce the above copyright
15.\"    notice, this list of conditions and the following disclaimer in
16.\"    the documentation and/or other materials provided with the
17.\"    distribution.
18.\"
19.\" 3. All advertising materials mentioning features or use of this
20.\"    software must display the following acknowledgment:
21.\"    "This product includes software developed by the OpenSSL Project
22.\"    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
23.\"
24.\" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
25.\"    endorse or promote products derived from this software without
26.\"    prior written permission. For written permission, please contact
27.\"    openssl-core@openssl.org.
28.\"
29.\" 5. Products derived from this software may not be called "OpenSSL"
30.\"    nor may "OpenSSL" appear in their names without prior written
31.\"    permission of the OpenSSL Project.
32.\"
33.\" 6. Redistributions of any form whatsoever must retain the following
34.\"    acknowledgment:
35.\"    "This product includes software developed by the OpenSSL Project
36.\"    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
37.\"
38.\" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
39.\" EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
40.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
41.\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
42.\" ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
43.\" SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
44.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
45.\" LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
46.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
47.\" STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
48.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
49.\" OF THE POSSIBILITY OF SUCH DAMAGE.
50.\"
51.Dd $Mdocdate: April 18 2018 $
52.Dt DH_SET_METHOD 3
53.Os
54.Sh NAME
55.Nm DH_set_default_method ,
56.Nm DH_get_default_method ,
57.Nm DH_set_method ,
58.Nm DH_new_method ,
59.Nm DH_OpenSSL
60.Nd select DH method
61.Sh SYNOPSIS
62.In openssl/dh.h
63.Ft void
64.Fo DH_set_default_method
65.Fa "const DH_METHOD *meth"
66.Fc
67.Ft const DH_METHOD *
68.Fo DH_get_default_method
69.Fa void
70.Fc
71.Ft int
72.Fo DH_set_method
73.Fa "DH *dh"
74.Fa "const DH_METHOD *meth"
75.Fc
76.Ft DH *
77.Fo DH_new_method
78.Fa "ENGINE *engine"
79.Fc
80.Ft const DH_METHOD *
81.Fo DH_OpenSSL
82.Fa void
83.Fc
84.Sh DESCRIPTION
85A
86.Vt DH_METHOD
87object contains pointers to the functions
88used for Diffie-Hellman operations.
89By default, the internal implementation returned by
90.Fn DH_OpenSSL
91is used.
92By selecting another method, alternative implementations
93such as hardware accelerators may be used.
94.Pp
95.Fn DH_set_default_method
96selects
97.Fa meth
98as the default method for all
99.Vt DH
100structures created later.
101If any
102.Vt ENGINE
103was registered with
104.Xr ENGINE_register_DH 3
105that can be successfully initialized, it overrides the default.
106.Pp
107.Fn DH_get_default_method
108returns a pointer to the current default method,
109even if it is actually overridded by an
110.Vt ENGINE .
111.Pp
112.Fn DH_set_method
113selects
114.Fa meth
115to perform all operations using the key
116.Fa dh .
117This replaces the
118.Vt DH_METHOD
119used by the
120.Fa dh
121key and if the previous method was supplied by an
122.Vt ENGINE ,
123.Xr ENGINE_finish 3
124is called on it.
125It is possible to have
126.Vt DH
127keys that only work with certain
128.Vt DH_METHOD
129implementations (e.g. from an
130.Vt ENGINE
131module that supports embedded hardware-protected keys),
132and in such cases attempting to change the
133.Vt DH_METHOD
134for the key can have unexpected results.
135.Pp
136.Fn DH_new_method
137allocates and initializes a
138.Vt DH
139structure so that
140.Fa engine
141is used for the DH operations.
142If
143.Fa engine
144is
145.Dv NULL ,
146.Xr ENGINE_get_default_DH 3
147is used.
148If that returns
149.Dv NULL ,
150the default method controlled by
151.Fn DH_set_default_method
152is used.
153.Pp
154The
155.Vt DH_METHOD
156structure is defined as follows:
157.Bd -literal
158typedef struct dh_meth_st
159{
160     /* name of the implementation */
161	const char *name;
162
163     /* generate private and public DH values for key agreement */
164        int (*generate_key)(DH *dh);
165
166     /* compute shared secret */
167        int (*compute_key)(unsigned char *key, BIGNUM *pub_key, DH *dh);
168
169     /* compute r = a ^ p mod m (May be NULL for some implementations) */
170        int (*bn_mod_exp)(DH *dh, BIGNUM *r, BIGNUM *a, const BIGNUM *p,
171                                const BIGNUM *m, BN_CTX *ctx,
172                                BN_MONT_CTX *m_ctx);
173
174     /* called at DH_new */
175        int (*init)(DH *dh);
176
177     /* called at DH_free */
178        int (*finish)(DH *dh);
179
180        int flags;
181
182        char *app_data; /* ?? */
183
184} DH_METHOD;
185.Ed
186.Sh RETURN VALUES
187.Fn DH_OpenSSL
188and
189.Fn DH_get_default_method
190return pointers to the respective
191.Vt DH_METHOD .
192.Pp
193.Fn DH_set_method
194returns 1 on success or 0 on failure.
195Currently, it cannot fail.
196.Pp
197.Fn DH_new_method
198returns
199.Dv NULL
200and sets an error code that can be obtained by
201.Xr ERR_get_error 3
202if the allocation fails.
203Otherwise it returns a pointer to the newly allocated structure.
204.Sh SEE ALSO
205.Xr DH_new 3 ,
206.Xr ENGINE_get_default_DH 3 ,
207.Xr ENGINE_register_DH 3 ,
208.Xr ENGINE_set_default_DH 3
209.Sh HISTORY
210.Fn DH_set_default_method ,
211.Fn DH_get_default_method ,
212.Fn DH_set_method ,
213.Fn DH_new_method
214and
215.Fn DH_OpenSSL
216first appeared in OpenSSL 0.9.5 and have been available since
217.Ox 2.7 .
218