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

/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dec.c69 * Returns true if pointP is the point at infinity, false otherwise
72 ec_point_at_infinity(SECItem *pointP) argument
76 for (i = 1; i < pointP->len; i++) {
77 if (pointP->data[i] != 0x00) return PR_FALSE;
84 * Computes scalar point multiplication pointQ = k1 * G + k2 * pointP for
89 const SECItem *pointP, SECItem *pointQ, int kmflag)
124 if (pointP != NULL) {
125 printf("ec_points_mul: pointP [len=%d]:", pointP->len);
126 for (i = 0; i < pointP
88 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 31 milliseconds