1e71b7053SJung-uk Kim=pod 2e71b7053SJung-uk Kim 3e71b7053SJung-uk Kim=head1 NAME 4e71b7053SJung-uk Kim 5e71b7053SJung-uk KimDSA_get0_pqg, DSA_set0_pqg, DSA_get0_key, DSA_set0_key, 6e71b7053SJung-uk KimDSA_get0_p, DSA_get0_q, DSA_get0_g, 7e71b7053SJung-uk KimDSA_get0_pub_key, DSA_get0_priv_key, 8e71b7053SJung-uk KimDSA_clear_flags, DSA_test_flags, DSA_set_flags, 9e71b7053SJung-uk KimDSA_get0_engine - Routines for getting and 10e71b7053SJung-uk Kimsetting data in a DSA object 11e71b7053SJung-uk Kim 12e71b7053SJung-uk Kim=head1 SYNOPSIS 13e71b7053SJung-uk Kim 14e71b7053SJung-uk Kim #include <openssl/dsa.h> 15e71b7053SJung-uk Kim 16*b077aed3SPierre ProncheryThe following functions have been deprecated since OpenSSL 3.0, and can be 17*b077aed3SPierre Proncheryhidden entirely by defining B<OPENSSL_API_COMPAT> with a suitable version value, 18*b077aed3SPierre Proncherysee L<openssl_user_macros(7)>: 19*b077aed3SPierre Pronchery 20e71b7053SJung-uk Kim void DSA_get0_pqg(const DSA *d, 21e71b7053SJung-uk Kim const BIGNUM **p, const BIGNUM **q, const BIGNUM **g); 22e71b7053SJung-uk Kim int DSA_set0_pqg(DSA *d, BIGNUM *p, BIGNUM *q, BIGNUM *g); 23e71b7053SJung-uk Kim void DSA_get0_key(const DSA *d, 24e71b7053SJung-uk Kim const BIGNUM **pub_key, const BIGNUM **priv_key); 25e71b7053SJung-uk Kim int DSA_set0_key(DSA *d, BIGNUM *pub_key, BIGNUM *priv_key); 26e71b7053SJung-uk Kim const BIGNUM *DSA_get0_p(const DSA *d); 27e71b7053SJung-uk Kim const BIGNUM *DSA_get0_q(const DSA *d); 28e71b7053SJung-uk Kim const BIGNUM *DSA_get0_g(const DSA *d); 29e71b7053SJung-uk Kim const BIGNUM *DSA_get0_pub_key(const DSA *d); 30e71b7053SJung-uk Kim const BIGNUM *DSA_get0_priv_key(const DSA *d); 31e71b7053SJung-uk Kim void DSA_clear_flags(DSA *d, int flags); 32e71b7053SJung-uk Kim int DSA_test_flags(const DSA *d, int flags); 33e71b7053SJung-uk Kim void DSA_set_flags(DSA *d, int flags); 34e71b7053SJung-uk Kim ENGINE *DSA_get0_engine(DSA *d); 35e71b7053SJung-uk Kim 36e71b7053SJung-uk Kim=head1 DESCRIPTION 37e71b7053SJung-uk Kim 38*b077aed3SPierre ProncheryAll of the functions described on this page are deprecated. 39*b077aed3SPierre ProncheryApplications should instead use L<EVP_PKEY_get_bn_param(3)>. 40*b077aed3SPierre Pronchery 41e71b7053SJung-uk KimA DSA object contains the parameters B<p>, B<q> and B<g>. It also contains a 42e71b7053SJung-uk Kimpublic key (B<pub_key>) and (optionally) a private key (B<priv_key>). 43e71b7053SJung-uk Kim 44e71b7053SJung-uk KimThe B<p>, B<q> and B<g> parameters can be obtained by calling DSA_get0_pqg(). 45e71b7053SJung-uk KimIf the parameters have not yet been set then B<*p>, B<*q> and B<*g> will be set 46e71b7053SJung-uk Kimto NULL. Otherwise they are set to pointers to their respective values. These 47e71b7053SJung-uk Kimpoint directly to the internal representations of the values and therefore 48e71b7053SJung-uk Kimshould not be freed directly. 49e71b7053SJung-uk Kim 50e71b7053SJung-uk KimThe B<p>, B<q> and B<g> values can be set by calling DSA_set0_pqg() and passing 51e71b7053SJung-uk Kimthe new values for B<p>, B<q> and B<g> as parameters to the function. Calling 52e71b7053SJung-uk Kimthis function transfers the memory management of the values to the DSA object, 53e71b7053SJung-uk Kimand therefore the values that have been passed in should not be freed directly 54e71b7053SJung-uk Kimafter this function has been called. 55e71b7053SJung-uk Kim 56e71b7053SJung-uk KimTo get the public and private key values use the DSA_get0_key() function. A 57e71b7053SJung-uk Kimpointer to the public key will be stored in B<*pub_key>, and a pointer to the 58e71b7053SJung-uk Kimprivate key will be stored in B<*priv_key>. Either may be NULL if they have not 59e71b7053SJung-uk Kimbeen set yet, although if the private key has been set then the public key must 60e71b7053SJung-uk Kimbe. The values point to the internal representation of the public key and 61e71b7053SJung-uk Kimprivate key values. This memory should not be freed directly. 62e71b7053SJung-uk Kim 63e71b7053SJung-uk KimThe public and private key values can be set using DSA_set0_key(). The public 64e71b7053SJung-uk Kimkey must be non-NULL the first time this function is called on a given DSA 65e71b7053SJung-uk Kimobject. The private key may be NULL. On subsequent calls, either may be NULL, 66e71b7053SJung-uk Kimwhich means the corresponding DSA field is left untouched. As for DSA_set0_pqg() 67e71b7053SJung-uk Kimthis function transfers the memory management of the key values to the DSA 68e71b7053SJung-uk Kimobject, and therefore they should not be freed directly after this function has 69e71b7053SJung-uk Kimbeen called. 70e71b7053SJung-uk Kim 71e71b7053SJung-uk KimAny of the values B<p>, B<q>, B<g>, B<priv_key>, and B<pub_key> can also be 72e71b7053SJung-uk Kimretrieved separately by the corresponding function DSA_get0_p(), DSA_get0_q(), 73e71b7053SJung-uk KimDSA_get0_g(), DSA_get0_priv_key(), and DSA_get0_pub_key(), respectively. 74e71b7053SJung-uk Kim 75e71b7053SJung-uk KimDSA_set_flags() sets the flags in the B<flags> parameter on the DSA object. 76e71b7053SJung-uk KimMultiple flags can be passed in one go (bitwise ORed together). Any flags that 77e71b7053SJung-uk Kimare already set are left set. DSA_test_flags() tests to see whether the flags 78e71b7053SJung-uk Kimpassed in the B<flags> parameter are currently set in the DSA object. Multiple 79e71b7053SJung-uk Kimflags can be tested in one go. All flags that are currently set are returned, or 80e71b7053SJung-uk Kimzero if none of the flags are set. DSA_clear_flags() clears the specified flags 81e71b7053SJung-uk Kimwithin the DSA object. 82e71b7053SJung-uk Kim 83e71b7053SJung-uk KimDSA_get0_engine() returns a handle to the ENGINE that has been set for this DSA 84e71b7053SJung-uk Kimobject, or NULL if no such ENGINE has been set. 85e71b7053SJung-uk Kim 86e71b7053SJung-uk Kim=head1 NOTES 87e71b7053SJung-uk Kim 88e71b7053SJung-uk KimValues retrieved with DSA_get0_key() are owned by the DSA object used 89e71b7053SJung-uk Kimin the call and may therefore I<not> be passed to DSA_set0_key(). If 90e71b7053SJung-uk Kimneeded, duplicate the received value using BN_dup() and pass the 91e71b7053SJung-uk Kimduplicate. The same applies to DSA_get0_pqg() and DSA_set0_pqg(). 92e71b7053SJung-uk Kim 93e71b7053SJung-uk Kim=head1 RETURN VALUES 94e71b7053SJung-uk Kim 95e71b7053SJung-uk KimDSA_set0_pqg() and DSA_set0_key() return 1 on success or 0 on failure. 96e71b7053SJung-uk Kim 97e71b7053SJung-uk KimDSA_test_flags() returns the current state of the flags in the DSA object. 98e71b7053SJung-uk Kim 99e71b7053SJung-uk KimDSA_get0_engine() returns the ENGINE set for the DSA object or NULL if no ENGINE 100e71b7053SJung-uk Kimhas been set. 101e71b7053SJung-uk Kim 102e71b7053SJung-uk Kim=head1 SEE ALSO 103e71b7053SJung-uk Kim 104*b077aed3SPierre ProncheryL<EVP_PKEY_get_bn_param(3)>, 105e71b7053SJung-uk KimL<DSA_new(3)>, L<DSA_new(3)>, L<DSA_generate_parameters(3)>, L<DSA_generate_key(3)>, 106e71b7053SJung-uk KimL<DSA_dup_DH(3)>, L<DSA_do_sign(3)>, L<DSA_set_method(3)>, L<DSA_SIG_new(3)>, 107e71b7053SJung-uk KimL<DSA_sign(3)>, L<DSA_size(3)>, L<DSA_meth_new(3)> 108e71b7053SJung-uk Kim 109e71b7053SJung-uk Kim=head1 HISTORY 110e71b7053SJung-uk Kim 111*b077aed3SPierre ProncheryThe functions described here were added in OpenSSL 1.1.0 and deprecated in 112*b077aed3SPierre ProncheryOpenSSL 3.0. 113e71b7053SJung-uk Kim 114e71b7053SJung-uk Kim=head1 COPYRIGHT 115e71b7053SJung-uk Kim 116*b077aed3SPierre ProncheryCopyright 2016-2021 The OpenSSL Project Authors. All Rights Reserved. 117e71b7053SJung-uk Kim 118*b077aed3SPierre ProncheryLicensed under the Apache License 2.0 (the "License"). You may not use 119e71b7053SJung-uk Kimthis file except in compliance with the License. You can obtain a copy 120e71b7053SJung-uk Kimin the file LICENSE in the source distribution or at 121e71b7053SJung-uk KimL<https://www.openssl.org/source/license.html>. 122e71b7053SJung-uk Kim 123e71b7053SJung-uk Kim=cut 124