Lines Matching full:values
46 to NULL. Otherwise they are set to pointers to their respective values. These
47 point directly to the internal representations of the values and therefore
50 The B<p>, B<q> and B<g> values can be set by calling DSA_set0_pqg() and passing
51 the new values for B<p>, B<q> and B<g> as parameters to the function. Calling
52 this function transfers the memory management of the values to the DSA object,
53 and therefore the values that have been passed in should not be freed directly
56 To get the public and private key values use the DSA_get0_key() function. A
60 be. The values point to the internal representation of the public key and
61 private key values. This memory should not be freed directly.
63 The public and private key values can be set using DSA_set0_key(). The public
67 this function transfers the memory management of the key values to the DSA
71 Any of the values B<p>, B<q>, B<g>, B<priv_key>, and B<pub_key> can also be
88 Values retrieved with DSA_get0_key() are owned by the DSA object used
93 =head1 RETURN VALUES