DSA_get0_pqg.pod 4.2 KB

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