Symbol: ECPoint_mul
usr/src/common/crypto/ecc/ec2_aff.c
339
MP_CHECKOK( ECPoint_mul(group, &group->order, px, py, &pxt, &pyt) );
usr/src/common/crypto/ecc/ec2_test.c
254
MP_CHECKOK(ECPoint_mul(group, &order_1, NULL, NULL, &rx, &ry));
usr/src/common/crypto/ecc/ec2_test.c
271
MP_CHECKOK(ECPoint_mul(group, &order_1, &gx, &gy, &rx, &ry));
usr/src/common/crypto/ecc/ec2_test.c
342
MP_CHECKOK(ECPoint_mul(group, &group->order, NULL, NULL, &rx, &ry));
usr/src/common/crypto/ecc/ec2_test.c
357
MP_CHECKOK(ECPoint_mul(group, &group->order, &gx, &gy, &rx, &ry));
usr/src/common/crypto/ecc/ec2_test.c
420
(ECPoint_mul(group, &n, NULL, NULL, &rx, &ry)),
usr/src/common/crypto/ecc/ec2_test.c
427
(ECPoint_mul(group, &n, NULL, NULL, &rx, &ry)),
usr/src/common/crypto/ecc/ec2_test.c
430
(ECPoint_mul(group, &n, &gx, &gy, &rx, &ry)),
usr/src/common/crypto/ecc/ecl.h
79
mp_err ECPoint_mul(const ECGroup *group, const mp_int *k, const mp_int *px,
usr/src/common/crypto/ecc/ecl_mult.c
126
return ECPoint_mul(group, k2, px, py, rx, ry);
usr/src/common/crypto/ecc/ecl_mult.c
128
return ECPoint_mul(group, k1, NULL, NULL, rx, ry);
usr/src/common/crypto/ecc/ecl_mult.c
136
MP_CHECKOK(ECPoint_mul(group, k1, NULL, NULL, &sx, &sy));
usr/src/common/crypto/ecc/ecl_mult.c
137
MP_CHECKOK(ECPoint_mul(group, k2, px, py, rx, ry));
usr/src/common/crypto/ecc/ecl_mult.c
184
return ECPoint_mul(group, k2, px, py, rx, ry);
usr/src/common/crypto/ecc/ecl_mult.c
186
return ECPoint_mul(group, k1, NULL, NULL, rx, ry);
usr/src/common/crypto/ecc/ecp_aff.c
350
MP_CHECKOK( ECPoint_mul(group, &group->order, px, py, &pxt, &pyt) );
usr/src/common/crypto/ecc/ecp_jac.c
440
return ECPoint_mul(group, k2, px, py, rx, ry);
usr/src/common/crypto/ecc/ecp_jac.c
442
return ECPoint_mul(group, k1, NULL, NULL, rx, ry);
usr/src/common/crypto/ecc/ecp_test.c
233
MP_CHECKOK(ECPoint_mul(group, &order_1, NULL, NULL, &rx, &ry));
usr/src/common/crypto/ecc/ecp_test.c
250
MP_CHECKOK(ECPoint_mul(group, &order_1, &gx, &gy, &rx, &ry));
usr/src/common/crypto/ecc/ecp_test.c
304
MP_CHECKOK(ECPoint_mul(group, &group->order, NULL, NULL, &rx, &ry));
usr/src/common/crypto/ecc/ecp_test.c
319
MP_CHECKOK(ECPoint_mul(group, &group->order, &gx, &gy, &rx, &ry));
usr/src/common/crypto/ecc/ecp_test.c
382
(ECPoint_mul(group, &n, NULL, NULL, &rx, &ry)),
usr/src/common/crypto/ecc/ecp_test.c
389
(ECPoint_mul(group, &n, NULL, NULL, &rx, &ry)),
usr/src/common/crypto/ecc/ecp_test.c
392
(ECPoint_mul(group, &n, &gx, &gy, &rx, &ry)),