Lines Matching refs:ECDSA_SIG
15 ECDSA_SIG *ECDSA_SIG_new(void);
16 void ECDSA_SIG_free(ECDSA_SIG *sig);
17 void ECDSA_SIG_get0(const ECDSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps);
18 const BIGNUM *ECDSA_SIG_get0_r(const ECDSA_SIG *sig);
19 const BIGNUM *ECDSA_SIG_get0_s(const ECDSA_SIG *sig);
20 int ECDSA_SIG_set0(ECDSA_SIG *sig, BIGNUM *r, BIGNUM *s);
30 ECDSA_SIG *ECDSA_do_sign(const unsigned char *dgst, int dgst_len,
36 const ECDSA_SIG *sig, EC_KEY* eckey);
38 ECDSA_SIG *ECDSA_do_sign_ex(const unsigned char *dgst, int dgstlen,
48 B<ECDSA_SIG> is an opaque structure consisting of two BIGNUMs for the
51 ECDSA_SIG_new() allocates an empty B<ECDSA_SIG> structure. Note: before
54 ECDSA_SIG_free() frees the B<ECDSA_SIG> structure I<sig>.
66 values to the B<ECDSA_SIG> object, and therefore the values that have been
88 as a newly allocated B<ECDSA_SIG> structure (or NULL on error). ECDSA_do_sign()
97 presented in the form of a pointer to an B<ECDSA_SIG> structure.
116 returned as a newly allocated B<ECDSA_SIG> structure (or NULL on error).
133 B<ECDSA_SIG> structure or NULL on error.
148 ECDSA_SIG *sig;