OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ECDSA_SIG
(Results
1 - 8
of
8
) sorted by null
/external/openssl/crypto/ecdsa/
ecs_asn1.c
60
ASN1_SEQUENCE(
ECDSA_SIG
) = {
61
ASN1_SIMPLE(
ECDSA_SIG
, r, CBIGNUM),
62
ASN1_SIMPLE(
ECDSA_SIG
, s, CBIGNUM)
63
} ASN1_SEQUENCE_END(
ECDSA_SIG
)
65
DECLARE_ASN1_FUNCTIONS_const(
ECDSA_SIG
)
66
DECLARE_ASN1_ENCODE_FUNCTIONS_const(
ECDSA_SIG
,
ECDSA_SIG
)
67
IMPLEMENT_ASN1_FUNCTIONS_const(
ECDSA_SIG
)
ecdsa.h
82
}
ECDSA_SIG
;
84
/** Allocates and initialize a
ECDSA_SIG
structure
85
* \return pointer to a
ECDSA_SIG
structure or NULL if an error occurred
87
ECDSA_SIG
*ECDSA_SIG_new(void);
89
/** frees a
ECDSA_SIG
structure
90
* \param sig pointer to the
ECDSA_SIG
structure
92
void ECDSA_SIG_free(
ECDSA_SIG
*sig);
94
/** DER encode content of
ECDSA_SIG
object (note: this function modifies *pp
96
* \param sig pointer to the
ECDSA_SIG
object
98
* \return the length of the DER encoded
ECDSA_SIG
object or 0
[
all
...]
ecs_vrf.c
70
const
ECDSA_SIG
*sig, EC_KEY *eckey)
86
ECDSA_SIG
*s;
ecs_locl.h
71
ECDSA_SIG
*(*ecdsa_do_sign)(const unsigned char *dgst, int dgst_len,
76
const
ECDSA_SIG
*sig, EC_KEY *eckey);
ecs_sign.c
62
ECDSA_SIG
*ECDSA_do_sign(const unsigned char *dgst, int dlen, EC_KEY *eckey)
67
ECDSA_SIG
*ECDSA_do_sign_ex(const unsigned char *dgst, int dlen,
86
ECDSA_SIG
*s;
ecs_ossl.c
64
static
ECDSA_SIG
*ecdsa_do_sign(const unsigned char *dgst, int dlen,
69
const
ECDSA_SIG
*sig, EC_KEY *eckey);
220
static
ECDSA_SIG
*ecdsa_do_sign(const unsigned char *dgst, int dgst_len,
228
ECDSA_SIG
*ret;
352
const
ECDSA_SIG
*sig, EC_KEY *eckey)
ecdsatest.c
189
ECDSA_SIG
*signature = NULL;
/external/openssl/include/openssl/
ecdsa.h
82
}
ECDSA_SIG
;
84
/** Allocates and initialize a
ECDSA_SIG
structure
85
* \return pointer to a
ECDSA_SIG
structure or NULL if an error occurred
87
ECDSA_SIG
*ECDSA_SIG_new(void);
89
/** frees a
ECDSA_SIG
structure
90
* \param sig pointer to the
ECDSA_SIG
structure
92
void ECDSA_SIG_free(
ECDSA_SIG
*sig);
94
/** DER encode content of
ECDSA_SIG
object (note: this function modifies *pp
96
* \param sig pointer to the
ECDSA_SIG
object
98
* \return the length of the DER encoded
ECDSA_SIG
object or 0
[
all
...]
Completed in 3523 milliseconds