2
0

DH_get0_pqg.pod 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. =pod
  2. =head1 NAME
  3. DH_get0_pqg, DH_set0_pqg, DH_get0_key, DH_set0_key,
  4. DH_get0_p, DH_get0_q, DH_get0_g,
  5. DH_get0_priv_key, DH_get0_pub_key,
  6. DH_clear_flags, DH_test_flags, DH_set_flags, DH_get0_engine,
  7. DH_get_length, DH_set_length - Routines for getting and setting data in a DH object
  8. =head1 SYNOPSIS
  9. #include <openssl/dh.h>
  10. void DH_get0_pqg(const DH *dh,
  11. const BIGNUM **p, const BIGNUM **q, const BIGNUM **g);
  12. int DH_set0_pqg(DH *dh, BIGNUM *p, BIGNUM *q, BIGNUM *g);
  13. void DH_get0_key(const DH *dh,
  14. const BIGNUM **pub_key, const BIGNUM **priv_key);
  15. int DH_set0_key(DH *dh, BIGNUM *pub_key, BIGNUM *priv_key);
  16. const BIGNUM *DH_get0_p(const DH *dh);
  17. const BIGNUM *DH_get0_q(const DH *dh);
  18. const BIGNUM *DH_get0_g(const DH *dh);
  19. const BIGNUM *DH_get0_priv_key(const DH *dh);
  20. const BIGNUM *DH_get0_pub_key(const DH *dh);
  21. void DH_clear_flags(DH *dh, int flags);
  22. int DH_test_flags(const DH *dh, int flags);
  23. void DH_set_flags(DH *dh, int flags);
  24. long DH_get_length(const DH *dh);
  25. int DH_set_length(DH *dh, long length);
  26. Deprecated since OpenSSL 3.0, can be hidden entirely by defining
  27. B<OPENSSL_API_COMPAT> with a suitable version value, see
  28. L<openssl_user_macros(7)>:
  29. ENGINE *DH_get0_engine(DH *d);
  30. =head1 DESCRIPTION
  31. A DH object contains the parameters I<p>, I<q> and I<g>. Note that the I<q>
  32. parameter is optional. It also contains a public key (I<pub_key>) and
  33. (optionally) a private key (I<priv_key>).
  34. The I<p>, I<q> and I<g> parameters can be obtained by calling DH_get0_pqg().
  35. If the parameters have not yet been set then I<*p>, I<*q> and I<*g> will be set
  36. to NULL. Otherwise they are set to pointers to their respective values. These
  37. point directly to the internal representations of the values and therefore
  38. should not be freed directly.
  39. Any of the out parameters I<p>, I<q>, and I<g> can be NULL, in which case no
  40. value will be returned for that parameter.
  41. The I<p>, I<q> and I<g> values can be set by calling DH_set0_pqg() and passing
  42. the new values for I<p>, I<q> and I<g> as parameters to the function. Calling
  43. this function transfers the memory management of the values to the DH object,
  44. and therefore the values that have been passed in should not be freed directly
  45. after this function has been called. The I<q> parameter may be NULL.
  46. DH_set0_pqg() also checks if the parameters associated with I<p> and I<g> and
  47. optionally I<q> are associated with known safe prime groups. If it is a safe
  48. prime group then the value of I<q> will be set to q = (p - 1) / 2 if I<q> is
  49. NULL. The optional length parameter will be set to BN_num_bits(I<q>) if I<q>
  50. is not NULL.
  51. To get the public and private key values use the DH_get0_key() function. A
  52. pointer to the public key will be stored in I<*pub_key>, and a pointer to the
  53. private key will be stored in I<*priv_key>. Either may be NULL if they have not
  54. been set yet, although if the private key has been set then the public key must
  55. be. The values point to the internal representation of the public key and
  56. private key values. This memory should not be freed directly.
  57. Any of the out parameters I<pub_key> and I<priv_key> can be NULL, in which case
  58. no value will be returned for that parameter.
  59. The public and private key values can be set using DH_set0_key(). Either
  60. parameter may be NULL, which means the corresponding DH field is left
  61. untouched. As with DH_set0_pqg() this function transfers the memory management
  62. of the key values to the DH object, and therefore they should not be freed
  63. directly after this function has been called.
  64. Any of the values I<p>, I<q>, I<g>, I<priv_key>, and I<pub_key> can also be
  65. retrieved separately by the corresponding function DH_get0_p(), DH_get0_q(),
  66. DH_get0_g(), DH_get0_priv_key(), and DH_get0_pub_key(), respectively.
  67. DH_set_flags() sets the flags in the I<flags> parameter on the DH object.
  68. Multiple flags can be passed in one go (bitwise ORed together). Any flags that
  69. are already set are left set. DH_test_flags() tests to see whether the flags
  70. passed in the I<flags> parameter are currently set in the DH object. Multiple
  71. flags can be tested in one go. All flags that are currently set are returned, or
  72. zero if none of the flags are set. DH_clear_flags() clears the specified flags
  73. within the DH object.
  74. DH_get0_engine() returns a handle to the ENGINE that has been set for this DH
  75. object, or NULL if no such ENGINE has been set. This function is deprecated.
  76. The DH_get_length() and DH_set_length() functions get and set the optional
  77. length parameter associated with this DH object. If the length is nonzero then
  78. it is used, otherwise it is ignored. The I<length> parameter indicates the
  79. length of the secret exponent (private key) in bits. These functions are
  80. deprecated. For safe prime groups the optional length parameter I<length> can be
  81. set to a value greater or equal to 2 * maximum_target_security_strength(BN_num_bits(I<p>))
  82. as listed in SP800-56Ar3 Table(s) 25 & 26.
  83. =head1 NOTES
  84. Values retrieved with DH_get0_key() are owned by the DH object used
  85. in the call and may therefore I<not> be passed to DH_set0_key(). If
  86. needed, duplicate the received value using BN_dup() and pass the
  87. duplicate. The same applies to DH_get0_pqg() and DH_set0_pqg().
  88. =head1 RETURN VALUES
  89. DH_set0_pqg() and DH_set0_key() return 1 on success or 0 on failure.
  90. DH_get0_p(), DH_get0_q(), DH_get0_g(), DH_get0_priv_key(), and DH_get0_pub_key()
  91. return the respective value, or NULL if it is unset.
  92. DH_test_flags() returns the current state of the flags in the DH object.
  93. DH_get0_engine() returns the ENGINE set for the DH object or NULL if no ENGINE
  94. has been set.
  95. DH_get_length() returns the length of the secret exponent (private key) in bits,
  96. or zero if no such length has been explicitly set.
  97. =head1 SEE ALSO
  98. L<DH_new(3)>, L<DH_new(3)>, L<DH_generate_parameters(3)>, L<DH_generate_key(3)>,
  99. L<DH_set_method(3)>, L<DH_size(3)>, L<DH_meth_new(3)>
  100. =head1 HISTORY
  101. The DH_get0_engine() function was deprecated in OpenSSL 3.0.
  102. The functions described here were added in OpenSSL 1.1.0.
  103. =head1 COPYRIGHT
  104. Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
  105. Licensed under the Apache License 2.0 (the "License"). You may not use
  106. this file except in compliance with the License. You can obtain a copy
  107. in the file LICENSE in the source distribution or at
  108. L<https://www.openssl.org/source/license.html>.
  109. =cut