DH_get0_pqg.pod 4.6 KB

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