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