Searched refs:pointP (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/common/crypto/ecc/
H A Dec.c68 * Returns true if pointP is the point at infinity, false otherwise
71 ec_point_at_infinity(SECItem *pointP) argument
75 for (i = 1; i < pointP->len; i++) {
76 if (pointP->data[i] != 0x00) return PR_FALSE;
83 * Computes scalar point multiplication pointQ = k1 * G + k2 * pointP for
88 const SECItem *pointP, SECItem *pointQ, int kmflag)
123 if (pointP != NULL) {
124 printf("ec_points_mul: pointP [len=%d]:", pointP->len);
125 for (i = 0; i < pointP
87 ec_points_mul(const ECParams *params, const mp_int *k1, const mp_int *k2, const SECItem *pointP, SECItem *pointQ, int kmflag) argument
[all...]

Completed in 58 milliseconds