OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:p_scalar
(Results
1 - 6
of
6
) sorted by null
/external/boringssl/src/crypto/ec/
p256-x86_64.c
235
/* r = p *
p_scalar
*/
237
const EC_POINT *p, const BIGNUM *
p_scalar
,
240
assert(
p_scalar
!= NULL);
256
if (BN_num_bits(
p_scalar
) > 256 || BN_is_negative(
p_scalar
)) {
272
if (!BN_nnmod(mod,
p_scalar
, &group->order, ctx)) {
276
p_scalar
= mod;
280
for (j = 0; j <
p_scalar
->top * BN_BYTES; j += BN_BYTES) {
281
BN_ULONG d =
p_scalar
->d[j / BN_BYTES];
387
const EC_POINT *p_, const BIGNUM *
p_scalar
, BN_CTX *ctx)
[
all
...]
internal.h
98
/* Computes |r = g_scalar*generator +
p_scalar
*p| if |g_scalar| and |
p_scalar
|
99
* are both non-null. Computes |r = g_scalar*generator| if |
p_scalar
| is null.
100
* Computes |r =
p_scalar
*p| if g_scalar is null. At least one of |g_scalar|
101
* and |
p_scalar
| must be non-null, and |p| must be non-null if |
p_scalar
| is
104
const EC_POINT *p, const BIGNUM *
p_scalar
, BN_CTX *ctx);
178
const EC_POINT *p, const BIGNUM *
p_scalar
, BN_CTX *ctx);
wnaf.c
228
const EC_POINT *p, const BIGNUM *
p_scalar
, BN_CTX *ctx) {
256
* and |
p_scalar
|. */
259
const BIGNUM **scalars = p != NULL ? &
p_scalar
: NULL;
p256-64.c
1729
const BIGNUM *
p_scalar
= NULL;
local
[
all
...]
p224-64.c
1149
const BIGNUM *
p_scalar
= NULL;
local
[
all
...]
ec.c
844
const EC_POINT *p, const BIGNUM *
p_scalar
, BN_CTX *ctx) {
848
if ((g_scalar == NULL &&
p_scalar
== NULL) ||
849
((p == NULL) != (
p_scalar
== NULL))) {
860
return group->meth->mul(group, r, g_scalar, p,
p_scalar
, ctx);
Completed in 186 milliseconds