OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EC_POINTs_mul
(Results
1 - 4
of
4
) sorted by null
/external/openssl/crypto/ec/
ectest.c
672
if (!
EC_POINTs_mul
(group, P, NULL, 2, points, scalars, ctx)) ABORT;
673
if (!
EC_POINTs_mul
(group, R, z, 2, points, scalars, ctx)) ABORT;
686
if (!
EC_POINTs_mul
(group, P, NULL, 2, points, scalars, ctx)) ABORT;
703
if (!
EC_POINTs_mul
(group, P, NULL, 4, points, scalars, ctx)) ABORT;
[
all
...]
ec.h
622
int
EC_POINTs_mul
(const EC_GROUP *group, EC_POINT *r, const BIGNUM *n, size_t num, const EC_POINT *p[], const BIGNUM *m[], BN_CTX *ctx);
[
all
...]
ec_lib.c
1118
int
EC_POINTs_mul
(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar,
1131
/* just a convenient interface to
EC_POINTs_mul
() */
1139
return
EC_POINTs_mul
(group, r, g_scalar, (point != NULL && p_scalar != NULL), points, scalars, ctx);
/external/openssl/include/openssl/
ec.h
622
int
EC_POINTs_mul
(const EC_GROUP *group, EC_POINT *r, const BIGNUM *n, size_t num, const EC_POINT *p[], const BIGNUM *m[], BN_CTX *ctx);
[
all
...]
Completed in 88 milliseconds