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);
25 ECDSA_SIG *ECDSA_do_sign(const unsigned char *dgst, int dgst_len,
31 const ECDSA_SIG *sig, EC_KEY* eckey);
33 ECDSA_SIG *ECDSA_do_sign_ex(const unsigned char *dgst, int dgstlen,
47 B<ECDSA_SIG> is an opaque structure consisting of two BIGNUMs for the
50 ECDSA_SIG_new() allocates an empty B<ECDSA_SIG> structure. Note: before
53 ECDSA_SIG_free() frees the B<ECDSA_SIG> structure B<sig>.
65 function transfers the memory management of the values to the ECDSA_SIG object,
83 as a newly allocated B<ECDSA_SIG> structure (or NULL on error). ECDSA_do_sign()
92 presented in the form of a pointer to an B<ECDSA_SIG> structure.
111 returned as a newly allocated B<ECDSA_SIG> structure (or NULL on error).
128 B<ECDSA_SIG> structure or NULL on error.
143 ECDSA_SIG *sig;