Lines Matching full:dsa

145 setting data in a DSA object
149 \& #include <openssl/dsa.h>
157 \& void DSA_get0_pqg(const DSA *d,
159 \& int DSA_set0_pqg(DSA *d, BIGNUM *p, BIGNUM *q, BIGNUM *g);
160 \& void DSA_get0_key(const DSA *d,
162 \& int DSA_set0_key(DSA *d, BIGNUM *pub_key, BIGNUM *priv_key);
163 \& const BIGNUM *DSA_get0_p(const DSA *d);
164 \& const BIGNUM *DSA_get0_q(const DSA *d);
165 \& const BIGNUM *DSA_get0_g(const DSA *d);
166 \& const BIGNUM *DSA_get0_pub_key(const DSA *d);
167 \& const BIGNUM *DSA_get0_priv_key(const DSA *d);
168 \& void DSA_clear_flags(DSA *d, int flags);
169 \& int DSA_test_flags(const DSA *d, int flags);
170 \& void DSA_set_flags(DSA *d, int flags);
171 \& ENGINE *DSA_get0_engine(DSA *d);
178 A \s-1DSA\s0 object contains the parameters \fBp\fR, \fBq\fR and \fBg\fR. It also contains a
189 this function transfers the memory management of the values to the \s-1DSA\s0 object,
201 key must be non-NULL the first time this function is called on a given \s-1DSA\s0
203 which means the corresponding \s-1DSA\s0 field is left untouched. As for \fBDSA_set0_pqg()\fR
204 this function transfers the memory management of the key values to the \s-1DSA\s0
212 \&\fBDSA_set_flags()\fR sets the flags in the \fBflags\fR parameter on the \s-1DSA\s0 object.
215 passed in the \fBflags\fR parameter are currently set in the \s-1DSA\s0 object. Multiple
218 within the \s-1DSA\s0 object.
220 \&\fBDSA_get0_engine()\fR returns a handle to the \s-1ENGINE\s0 that has been set for this \s-1DSA\…
224 Values retrieved with \fBDSA_get0_key()\fR are owned by the \s-1DSA\s0 object used
232 \&\fBDSA_test_flags()\fR returns the current state of the flags in the \s-1DSA\s0 object.
234 \&\fBDSA_get0_engine()\fR returns the \s-1ENGINE\s0 set for the \s-1DSA\s0 object or \s-1NULL\s0 if…