Lines Matching refs:ECDSA_SIG
7 - Functions for creating, destroying and manipulating ECDSA_SIG objects
13 ECDSA_SIG *ECDSA_SIG_new(void);
14 void ECDSA_SIG_free(ECDSA_SIG *sig);
15 void ECDSA_SIG_get0(const ECDSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps);
16 const BIGNUM *ECDSA_SIG_get0_r(const ECDSA_SIG *sig);
17 const BIGNUM *ECDSA_SIG_get0_s(const ECDSA_SIG *sig);
18 int ECDSA_SIG_set0(ECDSA_SIG *sig, BIGNUM *r, BIGNUM *s);
22 B<ECDSA_SIG> is an opaque structure consisting of two BIGNUMs for the
25 The B<ECDSA_SIG> object was mainly used by the deprecated low level functions described in
30 ECDSA_SIG_new() allocates an empty B<ECDSA_SIG> structure.
33 ECDSA_SIG_free() frees the B<ECDSA_SIG> structure I<sig>.
46 values to the B<ECDSA_SIG> object, and therefore the values that have been
66 ECDSA_SIG *obj;
69 /* Load a signature into the ECDSA_SIG object */
87 Convert I<r> and I<s> byte arrays into an ECDSA_SIG I<signature> of
90 ECDSA_SIG *obj = NULL;