Lines Matching refs:DSA

10 setting data in a DSA object
20 void DSA_get0_pqg(const DSA *d,
22 int DSA_set0_pqg(DSA *d, BIGNUM *p, BIGNUM *q, BIGNUM *g);
23 void DSA_get0_key(const DSA *d,
25 int DSA_set0_key(DSA *d, BIGNUM *pub_key, BIGNUM *priv_key);
26 const BIGNUM *DSA_get0_p(const DSA *d);
27 const BIGNUM *DSA_get0_q(const DSA *d);
28 const BIGNUM *DSA_get0_g(const DSA *d);
29 const BIGNUM *DSA_get0_pub_key(const DSA *d);
30 const BIGNUM *DSA_get0_priv_key(const DSA *d);
31 void DSA_clear_flags(DSA *d, int flags);
32 int DSA_test_flags(const DSA *d, int flags);
33 void DSA_set_flags(DSA *d, int flags);
34 ENGINE *DSA_get0_engine(DSA *d);
41 A DSA object contains the parameters B<p>, B<q> and B<g>. It also contains a
52 this function transfers the memory management of the values to the DSA object,
64 key must be non-NULL the first time this function is called on a given DSA
66 which means the corresponding DSA field is left untouched. As for DSA_set0_pqg()
67 this function transfers the memory management of the key values to the DSA
75 DSA_set_flags() sets the flags in the B<flags> parameter on the DSA object.
78 passed in the B<flags> parameter are currently set in the DSA object. Multiple
81 within the DSA object.
83 DSA_get0_engine() returns a handle to the ENGINE that has been set for this DSA
88 Values retrieved with DSA_get0_key() are owned by the DSA object used
97 DSA_test_flags() returns the current state of the flags in the DSA object.
99 DSA_get0_engine() returns the ENGINE set for the DSA object or NULL if no ENGINE