| 
									
										
										
										
											2016-04-07 22:24:23 +08:00
										 |  |  | =pod | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head1 NAME | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-16 22:18:13 +08:00
										 |  |  | DH_get0_pqg, DH_set0_pqg, DH_get0_key, DH_set0_key, | 
					
						
							|  |  |  | DH_get0_p, DH_get0_q, DH_get0_g, | 
					
						
							|  |  |  | DH_get0_priv_key, DH_get0_pub_key, | 
					
						
							|  |  |  | DH_clear_flags, DH_test_flags, DH_set_flags, DH_get0_engine, | 
					
						
							|  |  |  | DH_get_length, DH_set_length - Routines for getting and setting data in a DH object | 
					
						
							| 
									
										
										
										
											2016-04-07 22:24:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | =head1 SYNOPSIS | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  #include <openssl/dh.h> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-02 19:33:49 +08:00
										 |  |  | The following functions have been deprecated since OpenSSL 3.0, and can be | 
					
						
							|  |  |  | hidden entirely by defining B<OPENSSL_API_COMPAT> with a suitable version value, | 
					
						
							|  |  |  | see L<openssl_user_macros(7)>: | 
					
						
							| 
									
										
										
										
											2021-03-16 07:39:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-14 21:48:16 +08:00
										 |  |  |  void DH_get0_pqg(const DH *dh, | 
					
						
							|  |  |  |                   const BIGNUM **p, const BIGNUM **q, const BIGNUM **g); | 
					
						
							| 
									
										
										
										
											2016-04-07 22:24:23 +08:00
										 |  |  |  int DH_set0_pqg(DH *dh, BIGNUM *p, BIGNUM *q, BIGNUM *g); | 
					
						
							| 
									
										
										
										
											2016-06-14 21:48:16 +08:00
										 |  |  |  void DH_get0_key(const DH *dh, | 
					
						
							|  |  |  |                   const BIGNUM **pub_key, const BIGNUM **priv_key); | 
					
						
							| 
									
										
										
										
											2016-04-07 22:24:23 +08:00
										 |  |  |  int DH_set0_key(DH *dh, BIGNUM *pub_key, BIGNUM *priv_key); | 
					
						
							| 
									
										
										
										
											2018-05-16 22:18:13 +08:00
										 |  |  |  const BIGNUM *DH_get0_p(const DH *dh); | 
					
						
							|  |  |  |  const BIGNUM *DH_get0_q(const DH *dh); | 
					
						
							|  |  |  |  const BIGNUM *DH_get0_g(const DH *dh); | 
					
						
							|  |  |  |  const BIGNUM *DH_get0_priv_key(const DH *dh); | 
					
						
							|  |  |  |  const BIGNUM *DH_get0_pub_key(const DH *dh); | 
					
						
							| 
									
										
										
										
											2016-04-07 22:24:23 +08:00
										 |  |  |  void DH_clear_flags(DH *dh, int flags); | 
					
						
							|  |  |  |  int DH_test_flags(const DH *dh, int flags); | 
					
						
							|  |  |  |  void DH_set_flags(DH *dh, int flags); | 
					
						
							| 
									
										
										
										
											2020-02-03 17:05:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-03 15:38:39 +08:00
										 |  |  |  long DH_get_length(const DH *dh); | 
					
						
							|  |  |  |  int DH_set_length(DH *dh, long length); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-07 22:24:23 +08:00
										 |  |  |  ENGINE *DH_get0_engine(DH *d); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head1 DESCRIPTION | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-16 07:39:19 +08:00
										 |  |  | All of the functions described on this page are deprecated. | 
					
						
							|  |  |  | Applications should instead use L<EVP_PKEY_get_bn_param(3)> for any methods that | 
					
						
							| 
									
										
										
										
											2022-01-03 07:00:27 +08:00
										 |  |  | return a B<BIGNUM>. Refer to L<EVP_PKEY-DH(7)> for more information. | 
					
						
							| 
									
										
										
										
											2021-03-16 07:39:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-07 05:47:58 +08:00
										 |  |  | A DH object contains the parameters I<p>, I<q> and I<g>. Note that the I<q> | 
					
						
							|  |  |  | parameter is optional. It also contains a public key (I<pub_key>) and | 
					
						
							|  |  |  | (optionally) a private key (I<priv_key>). | 
					
						
							| 
									
										
										
										
											2016-04-07 22:24:23 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-07 05:47:58 +08:00
										 |  |  | The I<p>, I<q> and I<g> parameters can be obtained by calling DH_get0_pqg(). | 
					
						
							|  |  |  | If the parameters have not yet been set then I<*p>, I<*q> and I<*g> will be set | 
					
						
							| 
									
										
										
										
											2016-04-07 22:24:23 +08:00
										 |  |  | to NULL. Otherwise they are set to pointers to their respective values. These | 
					
						
							|  |  |  | point directly to the internal representations of the values and therefore | 
					
						
							|  |  |  | should not be freed directly. | 
					
						
							| 
									
										
										
										
											2020-03-07 05:47:58 +08:00
										 |  |  | Any of the out parameters I<p>, I<q>, and I<g> can be NULL, in which case no | 
					
						
							| 
									
										
										
										
											2018-05-27 15:07:07 +08:00
										 |  |  | value will be returned for that parameter. | 
					
						
							| 
									
										
										
										
											2016-04-07 22:24:23 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-07 05:47:58 +08:00
										 |  |  | The I<p>, I<q> and I<g> values can be set by calling DH_set0_pqg() and passing | 
					
						
							|  |  |  | the new values for I<p>, I<q> and I<g> as parameters to the function. Calling | 
					
						
							| 
									
										
										
										
											2016-04-07 22:24:23 +08:00
										 |  |  | this function transfers the memory management of the values to the DH object, | 
					
						
							|  |  |  | and therefore the values that have been passed in should not be freed directly | 
					
						
							| 
									
										
										
										
											2020-03-07 05:47:58 +08:00
										 |  |  | after this function has been called. The I<q> parameter may be NULL. | 
					
						
							|  |  |  | DH_set0_pqg() also checks if the parameters associated with I<p> and I<g> and | 
					
						
							|  |  |  | optionally I<q> are associated with known safe prime groups. If it is a safe | 
					
						
							| 
									
										
										
										
											2020-04-20 09:07:38 +08:00
										 |  |  | prime group then the value of I<q> will be set to q = (p - 1) / 2 if I<q> is | 
					
						
							|  |  |  | NULL. The optional length parameter will be set to BN_num_bits(I<q>) if I<q> | 
					
						
							|  |  |  | is not NULL. | 
					
						
							| 
									
										
										
										
											2016-04-07 22:24:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | To get the public and private key values use the DH_get0_key() function. A | 
					
						
							| 
									
										
										
										
											2020-03-07 05:47:58 +08:00
										 |  |  | pointer to the public key will be stored in I<*pub_key>, and a pointer to the | 
					
						
							|  |  |  | private key will be stored in I<*priv_key>. Either may be NULL if they have not | 
					
						
							| 
									
										
										
										
											2016-04-07 22:24:23 +08:00
										 |  |  | been set yet, although if the private key has been set then the public key must | 
					
						
							|  |  |  | be. The values point to the internal representation of the public key and | 
					
						
							|  |  |  | private key values. This memory should not be freed directly. | 
					
						
							| 
									
										
										
										
											2020-03-07 05:47:58 +08:00
										 |  |  | Any of the out parameters I<pub_key> and I<priv_key> can be NULL, in which case | 
					
						
							| 
									
										
										
										
											2018-05-27 15:07:07 +08:00
										 |  |  | no value will be returned for that parameter. | 
					
						
							| 
									
										
										
										
											2016-04-07 22:24:23 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-18 23:58:24 +08:00
										 |  |  | The public and private key values can be set using DH_set0_key(). Either | 
					
						
							|  |  |  | parameter may be NULL, which means the corresponding DH field is left | 
					
						
							|  |  |  | untouched. As with DH_set0_pqg() this function transfers the memory management | 
					
						
							|  |  |  | of the key values to the DH object, and therefore they should not be freed | 
					
						
							|  |  |  | directly after this function has been called. | 
					
						
							| 
									
										
										
										
											2016-04-07 22:24:23 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-07 05:47:58 +08:00
										 |  |  | Any of the values I<p>, I<q>, I<g>, I<priv_key>, and I<pub_key> can also be | 
					
						
							| 
									
										
										
										
											2018-05-16 22:18:13 +08:00
										 |  |  | retrieved separately by the corresponding function DH_get0_p(), DH_get0_q(), | 
					
						
							|  |  |  | DH_get0_g(), DH_get0_priv_key(), and DH_get0_pub_key(), respectively. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-07 05:47:58 +08:00
										 |  |  | DH_set_flags() sets the flags in the I<flags> parameter on the DH object. | 
					
						
							| 
									
										
										
										
											2016-04-07 22:24:23 +08:00
										 |  |  | Multiple flags can be passed in one go (bitwise ORed together). Any flags that | 
					
						
							|  |  |  | are already set are left set. DH_test_flags() tests to see whether the flags | 
					
						
							| 
									
										
										
										
											2020-03-07 05:47:58 +08:00
										 |  |  | passed in the I<flags> parameter are currently set in the DH object. Multiple | 
					
						
							| 
									
										
										
										
											2016-04-07 22:24:23 +08:00
										 |  |  | flags can be tested in one go. All flags that are currently set are returned, or | 
					
						
							|  |  |  | zero if none of the flags are set. DH_clear_flags() clears the specified flags | 
					
						
							|  |  |  | within the DH object. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | DH_get0_engine() returns a handle to the ENGINE that has been set for this DH | 
					
						
							| 
									
										
										
										
											2021-03-16 07:39:19 +08:00
										 |  |  | object, or NULL if no such ENGINE has been set. This function is deprecated. All | 
					
						
							|  |  |  | engines should be replaced by providers. | 
					
						
							| 
									
										
										
										
											2016-04-07 22:24:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | The DH_get_length() and DH_set_length() functions get and set the optional | 
					
						
							| 
									
										
										
										
											2019-09-28 01:17:09 +08:00
										 |  |  | length parameter associated with this DH object. If the length is nonzero then | 
					
						
							| 
									
										
										
										
											2020-03-07 05:47:58 +08:00
										 |  |  | it is used, otherwise it is ignored. The I<length> parameter indicates the | 
					
						
							| 
									
										
										
										
											2021-03-16 07:39:19 +08:00
										 |  |  | length of the secret exponent (private key) in bits. For safe prime groups the optional length parameter I<length> can be | 
					
						
							| 
									
										
										
										
											2020-04-20 09:07:38 +08:00
										 |  |  | set to a value greater or equal to 2 * maximum_target_security_strength(BN_num_bits(I<p>)) | 
					
						
							|  |  |  | as listed in SP800-56Ar3 Table(s) 25 & 26. | 
					
						
							| 
									
										
										
										
											2021-03-16 07:39:19 +08:00
										 |  |  | These functions are deprecated and should be replaced with | 
					
						
							|  |  |  | EVP_PKEY_CTX_set_params() and EVP_PKEY_get_int_param() using the parameter key | 
					
						
							|  |  |  | B<OSSL_PKEY_PARAM_DH_PRIV_LEN> as described in L<EVP_PKEY-DH(7)>. | 
					
						
							| 
									
										
										
										
											2016-04-07 22:24:23 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-26 19:40:53 +08:00
										 |  |  | =head1 NOTES | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Values retrieved with DH_get0_key() are owned by the DH object used | 
					
						
							|  |  |  | in the call and may therefore I<not> be passed to DH_set0_key().  If | 
					
						
							|  |  |  | needed, duplicate the received value using BN_dup() and pass the | 
					
						
							|  |  |  | duplicate.  The same applies to DH_get0_pqg() and DH_set0_pqg(). | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-07 22:24:23 +08:00
										 |  |  | =head1 RETURN VALUES | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | DH_set0_pqg() and DH_set0_key() return 1 on success or 0 on failure. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-16 22:18:13 +08:00
										 |  |  | DH_get0_p(), DH_get0_q(), DH_get0_g(), DH_get0_priv_key(), and DH_get0_pub_key() | 
					
						
							| 
									
										
										
										
											2018-05-27 15:07:07 +08:00
										 |  |  | return the respective value, or NULL if it is unset. | 
					
						
							| 
									
										
										
										
											2018-05-16 22:18:13 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-07 22:24:23 +08:00
										 |  |  | DH_test_flags() returns the current state of the flags in the DH object. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | DH_get0_engine() returns the ENGINE set for the DH object or NULL if no ENGINE | 
					
						
							|  |  |  | has been set. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | DH_get_length() returns the length of the secret exponent (private key) in bits, | 
					
						
							|  |  |  | or zero if no such length has been explicitly set. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head1 SEE ALSO | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-11 16:33:09 +08:00
										 |  |  | L<DH_new(3)>, L<DH_new(3)>, L<DH_generate_parameters(3)>, L<DH_generate_key(3)>, | 
					
						
							| 
									
										
										
										
											2016-04-07 22:24:23 +08:00
										 |  |  | L<DH_set_method(3)>, L<DH_size(3)>, L<DH_meth_new(3)> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head1 HISTORY | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-15 21:39:45 +08:00
										 |  |  | The functions described here were added in OpenSSL 1.1.0. | 
					
						
							| 
									
										
										
										
											2016-04-07 22:24:23 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-16 07:39:19 +08:00
										 |  |  | All of these functions were deprecated in OpenSSL 3.0. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-18 23:44:05 +08:00
										 |  |  | =head1 COPYRIGHT | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-03 18:52:38 +08:00
										 |  |  | Copyright 2016-2022 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2016-05-18 23:44:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-06 21:04:44 +08:00
										 |  |  | Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2016-05-18 23:44:05 +08:00
										 |  |  | this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  | in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  | L<https://www.openssl.org/source/license.html>. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =cut |